Extracting AVI frames - converting to readily accessible BMPs

Hi, Im at a roadblock currently, I need to extract frames from an AVI video then convert it to BMP images and load/apply it as a texture to an object in a 3D scene. Now the problem is not extracting the frames, Ive managed to extract the frames using the IMAQ AVI Vis available but Im stuck after that.
I found the 'write file as BMP' VI under Vision Utilities, one of the terminals of the VI says 'File Path' now does that mean the path it will write the file to? Or...?
Secondly, I can't seem to find a way of simultaenously loading/saving lots of BMPs. The texture I apply to the object is from a BMP picture (and in this case lots of BMP images extracted from the AVI video) just using the 'Read BMP file' vi, which leads back to the path/directory of the BMP on the PC. Which is where the problem lies, I need the 'Read BMP file' vi to continously update every "x" seconds to account for the number of frames / FPS of the video so it reads each frame from the video as its updated. But if I need to save the accquired AVI frames as BMPs I don't see a way of doing this.
Any suggestions would be greatly appreciated.
Solved!
Go to Solution.

Hi
As I understand from your post you have acquired your data, so the problem is writing the extracted files to bmp and saving the files.
I have been looking into your issue and have found some documentation which may help with your application.
1) You asked about the path input to the bmp.vi's, the input path is for the file that you wish to write the data to, as the data is input through the image data terminal.
When in LabVIEW there is a handy context help tool, if you type ctrl+h a small window opens, when you hover your mouse over a function the window will display the basic description for that item, in the window clicking on detailed help will take you straight to the correct document.
2) You were also asking about continuously reading and simultaneously loading/saving the bmp data.
The link below is for a presentation on design patterns which may help you make an informed decision about the architecture of your vi.
http://zone.ni.com/devzone/cda/tut/p/id/7605
I am going to continue to look into this for you, if you have any questions please feel free to ask and I will get back to you.
Thank you
Stephanie L
Stephanie L
Applications Engineer
National Instruments UK and Ireland

Similar Messages

  • Extraction Key Frames from a video

    Hi all,
    I would like to know what is the best way to extract keyframe from a video.
    My Status (butr I can cahnge it)
    I'm Marco and I'm using JMF; I need for an help because I don't know how to extract keyframes from AVI and MPG files.
    I'm using the code posted in this forum for extracting all frame in a video with the adding of an if expression that in the accessFrame method that I report below:
    void accessFrame(Buffer frame) {
    BufferToImage stopBuffer = new BufferToImage((VideoFormat) frame.getFormat());
    Image stopImage = stopBuffer.createImage(frame);
    try {
    BufferedImage outImage = new BufferedImage(size.width, size.height, BufferedImage.TYPE_INT_RGB);
    Graphics og = outImage.getGraphics();
    og.drawImage(stopImage, 0, 0, size.width, size.height, null);
    Iterator writers = ImageIO.getImageWritersByFormatName("jpg");
    ImageWriter writer = (ImageWriter) writers.next();
    File f = new File(frame.getSequenceNumber() + ".jpg");
    if ((frame.getFlags() & Buffer.FLAG_KEY_FRAME) != 0){{color}
    {color:#ff9900}
    ImageOutputStream ios = ImageIO.createImageOutputStream(f);
    writer.setOutput(ios);
    {color:#ff9900}
    writer.write(outImage);
    ios.close();}
    } catch (IOException e) {{color}
    System.out.println("Error :" + e);
    So, I'm able to extract some keyframe, but i'm not sure it is the correct way and my dubt grows out of the fact that without the if expression highlighted in red, it seems that I have more keyframes (those ones with flag ==1040). Another problem is that it works only with AVI because MPG instead of 1040, they have alternate sequence of 32 and 1056.
    Cheers and thank u
    Marco

    >
    With the code yoodleyee posted, frames can be extracted and converted from the raw decoded format into images, but no guarantee that the frame extracted is a key frame, isnt it?Actually, there is such a guarantee...because the FrameGrabbingControl isn't implemented in any video format that uses keyframes. So, if it works, then every frame of the video is a keyframe, and it won't work otherwise.
    How can key frames be detected with JMF and then extracted with the code provided? Any tutorial or sample code about that?They can't be. You can write a custom codec that will give you access to every frame, regardless of the format, if you're wanting to get all of the frames.
    Example: [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/FrameAccess.html]
    But JMF doesn't have any way of dealing with key frames directly, at least that I am aware of.

  • How to convert JPG image to BMP ? (Printing jpg images in smartforms from content server)

    Hi,
    We have employee photos(JPG Format) stored in Content server. And now we want to print the photos in smartforms. For this I had written the below code to read the photo from content server in binary format as below.
    REPORT ZTEST1.
    PARAMETERS P_PERNR TYPE PERNR_D.
    DATA: PS_CONNECT_INFO TYPE TOAV0,
          IT_BINARY TYPE TABLE OF SDOKCNTBIN.
    CALL FUNCTION 'HR_IMAGE_EXISTS'
      EXPORTING
        P_PERNR                     = P_PERNR
    *   P_TCLAS                     = 'A'
    *   P_BEGDA                     = '18000101'
    *   P_ENDDA                     = '99991231'
    IMPORTING
    *   P_EXISTS                    =
       P_CONNECT_INFO              = PS_CONNECT_INFO
    * EXCEPTIONS
    * ERROR_CONNECTIONTABLE       = 1
    *   OTHERS                      = 2
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF PS_CONNECT_INFO IS NOT INITIAL.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
       STOR_CAT                    = SPACE
       CREP_ID                     = PS_CONNECT_INFO-ARCHIV_ID
          DOC_ID                      = PS_CONNECT_INFO-ARC_DOC_ID
    *   PHIO_ID                     =
    *   SIGNATURE                   = 'X'
    *   SECURITY                    = ' '
    *   NO_CACHE                    = ' '
    *   RAW_MODE                    = ' '
    * IMPORTING
    *   FROM_CACHE                  =
    *   CREA_TIME                   =
    *   CREA_DATE                   =
    *   CHNG_TIME                   =
    *   CHNG_DATE                   =
    *   STATUS                      =
    *   DOC_PROT                    =
    TABLES
    *   ACCESS_INFO                 =
    *   CONTENT_TXT                 =
       CONTENT_BIN                 = IT_BINARY
    * EXCEPTIONS
    * BAD_STORAGE_TYPE            = 1
    *   BAD_REQUEST                 = 2
    *   UNAUTHORIZED                = 3
    * COMP_NOT_FOUND              = 4
    *   NOT_FOUND                   = 5
    *   FORBIDDEN                   = 6
    *   CONFLICT                    = 7
    * INTERNAL_SERVER_ERROR       = 8
    *   ERROR_HTTP                  = 9
    * ERROR_SIGNATURE             = 10
    *   ERROR_CONFIG                = 11
    *   ERROR_FORMAT                = 12
    * ERROR_PARAMETER             = 13
    *   ERROR                       = 14
    *   OTHERS                      = 15
      IF SY-SUBRC <> 0.
    * Implement suitable error handling here
      ENDIF.
    ENDIF
    Now the issue is I want to convert that binary data to bitmap image and upload the same in to SE78. So that I can use that BMP image from SE78 in my smartforms.
    I had used the class CL_IGS_IMAGE_CONVERTER to covert the image into bmp but it is giving error that error in IMAGE DATA CORRUPT & Error Code 3. The conversion code used is as below.
    ******* CONVERT THE JPG IMAGE INTO BMP PHOTO. **********
      DATA: L_IGS_IMGCONV TYPE REF TO CL_IGS_IMAGE_CONVERTER,
    L_IMG_BLOB    TYPE W3MIMETABTYPE,
    L_IMG_SIZE    TYPE W3PARAM-CONT_LEN,
    L_IMG_TYPE    TYPE W3PARAM-CONT_TYPE,
             L_IMG_SUBTYPE TYPE W3PARAM-CONT_TYPE,
    L_IMG_URL     TYPE W3URL,
    L_ERR_CODE    TYPE I,
    L_ERR_TEXT    TYPE STRING,
             P_DEST TYPE CHAR32 VALUE 'IGS_RFC_DEST'.
      DATA: G_IMG_BLOB     TYPE W3MIMETABTYPE,
          G_IMG_TYPE     TYPE W3PARAM-CONT_TYPE,
          G_IMG_SIZE     TYPE W3PARAM-CONT_LEN.
      IF NOT IT_BINARY[] IS INITIAL.
        G_IMG_BLOB[] = IT_BINARY.
        CREATE OBJECT L_IGS_IMGCONV
          EXPORTING
            DESTINATION = P_DEST.
        CALL METHOD L_IGS_IMGCONV->SET_IMAGE
          EXPORTING
            BLOB      = G_IMG_BLOB
            BLOB_SIZE = G_IMG_SIZE.
        CASE PS_CONNECT_INFO-RESERVE.
          WHEN 'TIF'.
            G_IMG_TYPE = 'image/tiff'.
          WHEN 'JPG'.
            G_IMG_TYPE = 'image/jpeg'.
          WHEN 'PNG'.
            G_IMG_TYPE = 'image/png'.
          WHEN 'GIF'.
            G_IMG_TYPE = 'image/gif'.
          WHEN 'BMP'.
            G_IMG_TYPE = 'image/x-ms-bmp'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
    L_IGS_IMGCONV->INPUT  = G_IMG_TYPE.
        L_IGS_IMGCONV->OUTPUT = 'image/x-ms-bmp'.
    *    PERFORM GET_SIZE USING PICTURE_CONTAINER
    * L_IGS_IMGCONV->WIDTH
    * L_IGS_IMGCONV->HEIGHT.
        CALL METHOD L_IGS_IMGCONV->EXECUTE
          EXCEPTIONS
            OTHERS = 1.
        IF SY-SUBRC IS INITIAL.
          CALL METHOD L_IGS_IMGCONV->GET_IMAGE
            IMPORTING
              BLOB      = L_IMG_BLOB
              BLOB_SIZE = L_IMG_SIZE
              BLOB_TYPE = L_IMG_TYPE.
          SPLIT L_IMG_TYPE AT '/' INTO L_IMG_TYPE L_IMG_SUBTYPE.
        ELSE.
          CALL METHOD L_IGS_IMGCONV->GET_ERROR
            IMPORTING
              NUMBER  = L_ERR_CODE
              MESSAGE = L_ERR_TEXT.
          BREAK-POINT.
        ENDIF.
      ENDIF.
    ENDIF.
    So could you please some one help me how to convert JPEG Photo to BMP programatically.
    Regards,
    Mayur.

    johnandersonpalmdesert wrote:
    My printer is requesting a vector file.
    Jpeg File format does not support vectors.  Photoshop has limited vector support and tools.  Photoshop can not save vector file formats like SVG.  What File type does your printer want?
    Adobe Illustrator is Adobe vector application.

  • Hello! I used QuickTime for watch any videos on OS X Mountain Lion, but now, I'm passed to OS X Mavericks and QuickTime, when I open an .avi file, convert this in a .mov file. I'm sorry for my English, I'm French and I don't know speak English very well,

    Hello! I used QuickTime for watch any videos on OS X Mountain Lion, but now, I'm passed to OS X Mavericks and QuickTime, when I open an .avi file, convert this in a .mov file. I'm sorry for my English, I'm French and I don't know speak English very well, but what can I do for QuickTime opens on .avi and doesn't convert to .mov?

    HI GalaxieMusique,
    I'm french too, but I'm going to write this post in english so that everyone may understand it
    I have the same problem in Mavericks, but I'd say, more important, with QuickLook.
    Indeed Quicklook can't read avi movies anymore. Actually it always been the case, but with Perian we were able to fix it. The problem is that Perian is no longer available for Mac OS 10.9....
    I'd assume that our only hope is Apple themselves... It would be nice from Apple to creat an add-on for quicklook to be able to preview the avi movies.
    In regards with quicktime, you can download QuickTime 7 here:
    http://www.01net.com/telecharger/windows/Multimedia/lecteurs_video_dvd/fiches/10 0.html
    and ask all the .avi movies to be played by QuickTime 7 and not QuickTime X (included into Mac OS).
    Sorry for the english, we french people can make mistakes sometimes
    If anyone has a solution for QuickLook, please do not hesitate. This topic is becoming a real mess....

  • Can I extract a frame from a RoxioPlasma -created DVD into PSE10?

    Mac User (LION w/2Gb memory)
    PSE 10
    Several images were writen with RoxioPlasma onto a DVD and plays well in iDVD. I want to extract several frames into PSE10. Is it possible to do it (do I need a plug-in?)?

    When you say "Extract a frame", do you mean saving one of the frames as an image from Photoshop?
    Here's what you can do:
    1. Open the video in Photoshop, File > Open, and choose the .mov file.
    2. Once the video opens in Photoshop, open the Animation panel, Window > Animation
    3. In the Animation panel move the playhead to the desired frame, and save it as an image, File > Save As.
    and Voila!
    Any questions, just ask. I'll be more than happy to help.
    Marek Mularczyk
    http://SaiTraining.co.uk
    http://PhotoshopLightroomBridge.co.uk
    http://PhotoshopLightroomTV.com

  • Can I Extract a Frame from a Video (in Lightroom 3 or Photoshop CS5)?

    I'm running Windows 7 and have Lightroom 3 and Photoshop CS5.  Extracting a frame from a .MOV file is way over my head, but I want to try.  Right now the file is in Lightroom, but the "Open in" options are grayed out.  I have exported the file to my desktop, and  I can play the video with Windows Media Player.  I bet somewhere, somehow there is a way to do what I want.  Any help, ideas or references would be much appreciated!

    When you say "Extract a frame", do you mean saving one of the frames as an image from Photoshop?
    Here's what you can do:
    1. Open the video in Photoshop, File > Open, and choose the .mov file.
    2. Once the video opens in Photoshop, open the Animation panel, Window > Animation
    3. In the Animation panel move the playhead to the desired frame, and save it as an image, File > Save As.
    and Voila!
    Any questions, just ask. I'll be more than happy to help.
    Marek Mularczyk
    http://SaiTraining.co.uk
    http://PhotoshopLightroomBridge.co.uk
    http://PhotoshopLightroomTV.com

  • Extract ALL frames to JPEG

    How can I extract all frames from a AVCHD clip to JPEG?

    We can use a script for the massive load of work, no problem
    So, how do you do that [Export of sequencial stills]? I believe you are talking about an automatic way to export them all at once, right?
    I even tried upon [Export media] and then JPEG but it only takes one. Quite ridiculous!

  • How can I extract single frames from an imovie?

    How can I extract sigle frames from an imovie? Thanks for any input on this. Using iMovie 11

    John Codgell has some tips on how to use MPEG Streamclip to do this on this Discussion Thread:
    Helpful AnswerRe: can you make a still photo from clip

  • Mail 2.1.1 converting jpg's to bmp's and embedding them w/o attachment

    Anyone else have this problem. When I attach and send out some jpg's, the recipient gets an embedded file that doesn't show up as an attachment. Instead it converts it to a bmp and they have to right click it then change the file name. I haven't seen help on this anywhere. Mac tech support could not help me. Why is it converting my jpg's? I did make sure to check that I was sending "Windows friendly attachments." Anyone else out there know?

    Are you using RTF format for message composition along with a signature?
    Are you adding any such attachments below all message text including a signature if one is used?
    RTF with Tiger Mail is HTML and if you are adding any such attachments within/between message text and above a signature if one is used can cause problems primarily with Windows Outlook users depending on the Outlook version the recipient is using.
    The Mail.app displays image/photo and single page PDF attachments inline or viewed in place by default which cannot be turned off but depending on the recipient's email client and available preference settings, such attachments may appear inline or viewed in place within the body of the message when the message is opened by the recipient or as attached files only which must be opened separately to be viewed for which the sender has no control over.
    For this reason, I always do the following and rarely receive such a reported problem.
    Include the file extension with all attached files, send with Windows Friendly Attachments enabled (which has no effect on your reported problem but always a good idea when sending attachments to a Windows user for another reason) and always add attachments below all message text including a signature when one is used.
    If doing the above does not resolve it, use Plain Text for message composition instead which should.

  • How to convert an AVI frame to an image data cluster ?

    Hi everybody,
    I have previous VIs that manipulate pictures (image data cluster) readen from JPEG files. I'd like to use these VIs to analyse individual frames from an AVI file.
    How can I connect the image out of the IMAQ AVI read.vi to the picture input of the Draw Flattened Pixmap.vi?
    Thanks for helping,
    Olivier
    Solved!
    Go to Solution.

    Thanks for the tip but, in my implentation, it generates that the no picture can be manipulated. Could you tell me where is my mistake?
    Thanks,
    Olivier
    Attachments:
    AVI2JPEG.vi ‏15 KB
    clock.avi ‏81 KB

  • Image convert from jpg to BMP (black & white)

    Hi everybody
    here i am converting a jpg file to 2 bit monochrome image.
    Though this program is making the bmp monochrome image of passing jpg image.
    but the program is hanged in between.
    I don't understand the why it is hanging..though it is generating the result.
    please help me to solve the hanging problem.
    =================================================================================
    source output is:
    C:\j2sdk1.4.1_02\bin>java jaiexp.JAISampleProgram6 aish5.jpg
    1
    2
    FarmHouse2.bmp image
    ERROR: it doesn't finish gracefully....!!
    ==================================================================================
    source code
    package jaiexp;
    import java.awt.Frame;
    import java.awt.image.renderable.ParameterBlock;
    import java.io.IOException;
    import javax.media.jai.Interpolation;
    import javax.media.jai.JAI;
    import com.sun.media.jai.codec.BMPEncodeParam;
    import javax.media.jai.RenderedOp;
    import com.sun.media.jai.codec.FileSeekableStream;
    import javax.media.jai.widget.ScrollingImagePanel;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.awt.image.renderable.*;
    import javax.media.jai.*;
    import javax.media.jai.widget.*;
    import com.sun.media.jai.codec.*;
         * This program decodes an image file of any JAI supported
         * formats, such as GIF, JPEG, TIFF, BMP, PNM, PNG, into a
         * convert it to BMP and save it as bmp file
         public class JAISampleProgram6 {
              /** The main method. */
              public static void main(String[] args) {
                   // Define the source and destination file names.
                   String outputFile = "C:\\j2sdk1.4.1_02\\bin\\jaiexp\\FarmHouse2.bmp";
                   Image bwImage = null;
                   /* Validate input. */
                   if (args.length != 1) {
                        System.out.println("Usage: java JAISampleProgram " + "input_image_filename");
                        System.exit(-1);
                   }//if ends
                   * Create an input stream from the specified file name
                   * to be used with the file decoding operator.
                   Image colorImage = null;
                   try {
                        colorImage = Toolkit.getDefaultToolkit().createImage(args[0]);
                   } catch (Exception e) {
                        e.printStackTrace();
                        System.exit(0);
                   }//try catch ends
                   ImageFilter filter = new BlackWhiteFilter();
                   ImageProducer producer = new FilteredImageSource(colorImage.getSource(),filter);
                   bwImage = Toolkit.getDefaultToolkit().createImage(producer);
                   // Create the ParameterBlock.
                   ParameterBlock pb = new ParameterBlock();
                   pb.add(bwImage);
                   // Create the AWTImage operation.
                   //PlanarImage im = (PlanarImage)JAI.create("awtImage", pb);
                   RenderedOp image1 = (RenderedOp)JAI.create("AWTImage", pb);
                   System.out.println("1");
                   try {
                        FileOutputStream stream = new FileOutputStream(outputFile);
                        System.out.println("2");
                        javax.media.jai.operator.EncodeDescriptor.create(image1,stream,"BMP",null,null);
    System.out.println("3");
                        javax.media.jai.operator.FileStoreDescriptor.create(image1,outputFile,"BMP",null,null,null);
                        System.out.println("4");
                        stream.close();
                   }catch(Exception e){
                        System.out.println("Error:"+e);
                   }//try catch ends
                   System.out.println("5");
              }//fun ends
         }//class ends
         class BlackWhiteFilter extends RGBImageFilter{
         public int filterRGB(int x, int y, int rgb){
         int alpha = (rgb >> 24) & 0xff;
         int red = (int)(((rgb >> 16) & 0xff) * 0.3f);
         int green = (int)(((rgb >> 8) & 0xff) * 0.59f);
         int blue = (int)((rgb & 0xff) * 0.11f);
         int bws = ((red+green+blue) > 127) ? 255 : 0;
         return ((alpha & 0xFF) << 24) | ((bws & 0xFF) << 16) | ((bws & 0xFF) << 8) | ((bws & 0xFF) << 0);
         }//class ends
    thanks in advance.
    regards
    - Deepak
    email: [email protected]
         

    Also keep in mind that there are two definitions of bitmap. You want the 2-color version where each bit represents one color or the other. However, thanks to Microsoft, their bitmaps are really just uncompressed strings of RGB values, storing each pixel in multiple bits.

  • Avi frame by frame, it doesn't play

    Hi,
    i'm on Mac Os X 10.7.1, with QuickTime Player X 10.1 and Perian 1.2.3. When i start an avi file with the Quick Look it plays normally, but with QuickTime Player every time i play, it goes forward 1 frame than it stops.
    Any idea?

    Hi there,
    Yes I'm still struggling with this project for the cinema,
    http://discussions.apple.com/message.jspa?messageID=3746281#3746281
    but I don't want to be beaten by it. The cinema is very impressed with what I have produced, it's just configuring everything to work on their system.
    Ideally I would like to do what I wanted originally which is to produce a "trailer jukebox" where they select 4 trailers to play, as posed by my original posting. But that requires extra scripting and Final Cut Studio which I am daunted by the technical side of as I'm more a design person, and also the cost of the software. However I haven't ruled that out yet as this project could be reasonably lucrative for me as they would require updated DVD's once a month. Where we got to in the discussions with their technical manager was that if I couldn't do the scripting required, perhaps I could supply them with 5 or 6 disks with a variety of trailers on each disk that does't autoplay when inserted.
    I agree with you that they must be able to configure their computer DVD player so that it doesn't auto run when a disk is inserted.
    Thanks for your input, much appreciated.
    Steve

  • Problems converting images(gif,tif,bmp,jpg) to PDF

    Hi,<br />I installed PDF Generator Elements 7.2.2 using the turnkey installation JBoss,MySql and the JDK 1.4.2_04 included) in Windows Server 2003 R2 Enterprise Edition with SP1 ENU (evaluation edition) with the same credentials with the one that installed MS Office 2003,but the deployment of the Configuration Manager failed to start the Java service of JBoss..I changed the logon credentials for the JBoss for Adobe Livecycle(Local System Account) and run again the configuration Manager..This time Java Service did start and the database was initialised but I could not convert anything  to PDF..So I changed back the logon credentials(of the JBoss for Adobe LiveCycle service) to the one that installed Office,I waited for the JavaService to start and run again the configuration Manager...This time everything worked out(with the deployment)and seemed to go well..I can convert doc,txt,rtf,xls and so on to PDF..The file types I cannot convert though are the following:<br />bmp,gif,jpg,tif and everything related to Acrobat due to:<br /><br />(JBoss log file)<br />2007-03-13 05:53:05,031 INFO  [STDOUT] Command line '"C:\Adobe\LiveCycle\jboss\j2re1.4.2_04_compiler\bin\javaw.exe"'<br />2007-03-13 05:53:05,406 INFO  [STDOUT] java.lang.NoSuchMethodError: com.adobe.logging.AdobeLogManagerImpl.init(Ljava/lang/Class;Lcom/adobe/service/Manager;)V <br />2007-03-13 05:53:05,406 INFO  [STDOUT]      at com.adobe.service.bslj.Controller.<init>(Controller.java:109)<br />2007-03-13 05:53:05,406 INFO  [STDOUT]      at com.adobe.service.bslj.BslJ.initController(BslJ.java:51)<br />2007-03-13 05:53:05,406 INFO  [STDOUT]      at<br />com.adobe.native2pdf.bmc.AcrobatConverterServer.main(AcrobatConverterServer.java:67)<br />Any suggestion will be appreciated either on the installation walkthrough or everything in this post..<br />Thanks in advance,<br />Katerina

    In the Filetype Settings for Adobe Acrobat I can see only the :
    Specify the file extensions for file types accepted for this application, separated by commas.
    Filename Extensions : bmp,gif,e.t.c.
    Is this setting available in PDF Generator Elements?
    If so,then everything went wrong with the installation...
    Thanks,though...

  • How to extract a frame from a DVDSP created disc

    Hi Folks,
    I have a client who is interested in capturing a frame from a DVD that we created using DVDSP3. She wants to either print or email it to some family members. I know I can extract it from the original video file, but I'd rather not get involved. Can anyone recommed a simple shareware or inexpensive tool that will allow someone to grab a frame from the finished DVD? I'd be interested in both Mac and PC tools.
    Thanks,
    Chris

    I hope the PC tools are better
    Not if you dont use them correctly
    Do you get the camera? Do you select the VLC window? It works just fine... I've never not been able to do it!
    You can use AppleShift4 (no spacebar) and select the area you want but it's not as fast as the +Spacebar way as you have to drag the area. You can always edit the method that you can do in photoshop or something...
    -jake

  • .avi file converted to MPEG4 but problem

    Yes I was able to add a .mov ext to it but the video is not showing up. It was created on a PC using Tony Hawk helmet cam. I would like to use these clips to make low quality video of my bike rides etc.
    As I said, I get audio but the Quicktime video pane is blank (white screen). Are there any tricks to converting it to any Quicktime format that would make the video appear? I can tell it has large amounts of data as it should (28mb) for a 4 minute video. When I initially uploaded it from the network, I proceeded to open it and Quicktime pro notified me that I needed a plugin and directed me to the plugins and update page you find in the Quicktime preferences pane when you click the update tab. Any help would be great!
    Thanks in advance,
    Martin J. Estrada

    I finally rec'd QuickTime for the web and it's accompanying CD. I installed it in OS 9, restarted, and had the option of converting the .avi to multiple different formats including .mp4 and .mov. After registering it and activating it I converted the file to .mov then transferred it to my eMac and imported it to iMovie where I was able to adjust the sound track to be in sync with the video track.
    Thank you so much for all your interest QTK and especially Dick. You guys pointed me in the right direction and really trouble shot this problem. It was not a cheap fix and I sorta wish this stuff just worked but I will read the book and derive as much as I can from it to utilise in QT and iMovie.
    I forgot to mention that QT Pro 6 was a casualty of a crashed HD two summers ago. I had no record of the key. Apple recognized that I legitimately had a right to it but was unable to provide it because it had been phased out by the time I went to reinstall it. They provided at no charge a key for QT Pro 7 instead.
    Thanks again,
    Martin J. Estrada

Maybe you are looking for

  • Issue in Production Core Schema of ATG 10.0.3

    Hi All, I tried to create a schema in Production Core from CIM. The schema created successfully and when I tried to import data , it finished up saying that "No Data to Import". In the table listing, none of the DCS tables are found. I am using ATG 1

  • Shortdump while cancelling downpayment billing "FAZ"

    Can anyone advise what's the root cause of the shortdump when cancelling a downpayment request in VF11?  The error message is : "The OPEN_DI of BTE 00001170 could not determine any function modules" Thanks Peter

  • Support N+1 replication

    Hi guys We know that in Timesten, we can create active-standby pair, or have a master node and several backup nodes. But is it possible to have multiple master nodes to replicate the data to one backup node to avoid single-point-failure? Thanks

  • The constraints ddl clause does not exists in  indexfile using imp tools

    SQL> -- Create table SQL> create table TB_EXP_TEST   2  (   3    OWNER          VARCHAR2(30) not null,   4    OBJECT_NAME    VARCHAR2(128) not null,   5    SUBOBJECT_NAME VARCHAR2(30),   6    OBJECT_ID      NUMBER not null,   7    DATA_OBJECT_ID NUMB

  • Import failure

    I created a dtsx package in visual studio 2012.   when I try to import into sql 2008 integration services, I get the following error.   Is this a compatibility issue or a permissions issue ?   By the way, there weren't any 'preceding' errors. The pac