Movie Creation from an Image Sequence

Hi, my question is about how to use iMovie to create a movie from an image sequence.
I have much experience doing this in Quicktime Pro. I just import the image sequence and select the time interval for each frame.
I want to use iMovie 4 nstead of Quicktime Pro to do this because I'd like the frames to span variable time lengths and be synced to audio. I'm sure this is easy, but as someone new to iMovie I have no idea how to do it.
thanks
Powerbook G4 15 aluminum   Mac OS X (10.4.7)  

Another way is to import the sequence directly into iMovie, automatically importing with the duration you want. iMovie lets you set a duration from 1 frame up.
• iMovie lets you select any number of images to import at the same time, so you can select one image to import or a sequence of images in a folder. (Use the Import command so the numbered sequence arrives in the proper order.)
(To import all the images in a folder, press Command-A after navigating to that folder. Otherwise use Command-clicking and Shift-clicking to select the images.)
• Imported images always conform to your current Ken Burns settings. So if KB is set to import as 5 seconds with no zoom, that's how the images arrive.
But you're not limited to <n> seconds. You can force KB to import as 1 frame, 10 frames or whatever. The trick is to first configure KB to import with that duration.
Trouble is, the KB duration textbox is buggy so you can't type your desired duration there. But KB can be set another way, by clicking on any previously-imported image. So the trick is to create a clip with the duration you want, then use it as a "template" for importing other images.
To create a clip with the duration you want, double-click on a previously-imported clip and set its duration to <n> frames. (Type 00:00:01 for one frame.) Before importing the sequence, click on that clip, which sets KB to apply its settings for the next import(s).
One can create a series of "template" clips, one for each duration commonly used. Before importing each new set of images, click on the clip you want to control the next import.
Unfortunately, once images are imported there is no way to simultaneously Update all to a new duration using a textbox. It may be easiest to simply re-import the images with a new duration.
Karl

Similar Messages

  • How to create 12bit Prores4444 from an image sequence

    Hi,
    there seems to be a lot of confusion on the web regarding the bit depth of Prores4444. The white paper states that is supports "up to" 12bit for color components (YCrCb or RGB) and "up to" 16 bit for alpha and people seem to disagree whether it always uses 12bit or whether it uses 10bit when no more is needed.
    Having said that, I would like to create a Prores4444 file from a sequence of 16bit (per component) images (I could produce png or tiff or dpx) and for obvious reasons ensure I get the full 12bit of colour and the full 16 bit of alpha.
    So, two questions:
    How do I do that? I have final Cut Studio installed. Does Compressor offer that? Do I have to do something special to achieve this or will it automatically do this right based on the input material?
    How to I check if the result is really 12bit? Is there any tool that will tell me, if the resulting file is really a 12bit file (provided the "up to" in Apple's whitepaper was no accident)?
    Thank you in advance,
    Robert

    The only part of this equation that I can speak to is converting an image sequence to a quicktime move.
    Simplest way to work with an image sequence is to use quicktimeplayer7 to open an image sequence and then save it.  It will save as a quicktime with the same properties as the individual image files.  You will have to define the desired frame rate.  If I remember correctly, quicktime player 7 is an optional install on the snow leopard disk.  Not sure if it's still included with Lion or Mountain Lion. 
    You can change the still image default length to one frame and import all your still images into fcp and then simply drag them to the timeline, but fcp will struggle to play the sequence.  If you need to work this way, you should immediately export as a quicktime.
    Also, be sure and use leading zeros in numbering your image sequence as apple (and fcp) will not sort files properly, unless for example, your files are labelled. 001, 002, 003, etc.  (assuming you have less than 1000 files).

  • Encoding MPEG2-DVD from dpx image sequences produced random encoding artifacts

    I'm using PPro CS 6. I've exported my 90 minute film as a DPX sequence. This image sequence is effectively my master. I then export this DPX sequence as a MPEG2-DVD and I get the following artifacts on random frames. It happens whether I'm exporting PAL (non interlaced) or NTSC (interlaced). I've now run the encoder three separate times and I get random artifacts on completely different frames. I'm checked the DPX images and they are fine so I know this problem is happening in the encoding.
    Thanks.

    Here is another example. This time it I was encoding PAL from the DPX sequence.

  • Green line on the side of my export from an image sequence

    I have created an image sequence
    at 1024x768. I bring it into PP CS4 and on the far right side there is a green line running top to bottom. The timeline is the same size as the image sequence. What would cause this and how do I get rid of it?

    Have a look at this thread: http://discussions.apple.com/thread.jspa?threadID=1802274

  • Qosmio G30: How can I install only Ulead Dvd movie factory from Recovery image

    Hi everybody
    I have question about Ulead dvd movie factory.
    First, I bought my G30 with XP when it was the moment of the offer "vista for a few euros".
    So, I installed Vista with the official CD from Toshiba. But there was no longer Ulead Dvd movie Factory. As the XP's restoration CD is only an image disk, I can't install from it.
    Has anybody a solution for me?
    Thank's.
    BR.

    I think there is a solution!
    I found the Ulead DVD Movie Factory utility on the Toshiba page.
    I searched in the Qosmio G30 area but without to be successful.
    But I checked other sections and selected Satellite Satellite A series Satellite A200 (PSAEC) Vista and found the Ulead DVD Movie Factory 5.51.0147.03 version
    Download it a try to install this tool.
    Should works!

  • Automatic Pattern creation from Input Image

    Hi all,
    I've created a program to automatically create a patterns from an input image
    1. The user selects image
    2. with a rectangle he selects a zone of that image
    3. An automatic pattern image is created as result of repeating that rectangle
    It's working most of the times but sometimes:
    1. The red rectangle which I use to select the area I want to repeat is not displayed
    2. The area is not correctly handled and strange blank areas appear
    Do you know how to solve these issues?
    I put you here the whole source code so you can execute it and have fun creating patterns!
    http://tlloreti.googlepages.com/src.rar
    Regards
    T

    Part 2*
    Now, about your red rectangle
    class Selector extends MouseInputAdapter
        ImageSelectionPanel selectionPanel;
        Point start;
        Point end;
        boolean dragging, isClipSet;
        public Selector(ImageSelectionPanel isp)
            selectionPanel = isp;
            dragging = false;
            isClipSet = false;
        public void mousePressed(MouseEvent e)
            if(isClipSet)             // clear existing clip
                selectionPanel.setClipFrame(start, start);
                isClipSet = false;
            else                      // or start new clip
                start = e.getPoint();
                dragging = true;
                isClipSet = true;
        public void mouseReleased(MouseEvent e)
            dragging = false;
            end = e.getPoint();
            System.out.println("START="+start);
            System.out.println("END="+end);
            int width=(int) (end.getX()-start.getX()) ;
            int height=(int) (end.getY() - start.getY());
            if ((width>0)  && (height>0))
            MergeImages.GenerateFourImagesDragAndDrop(crop1.fileName, start.getX(), start.getY(),width ,height );
        public void mouseDragged(MouseEvent e)
            if(dragging)
                selectionPanel.setClipFrame(start, e.getPoint());
    }The problem stems from the isClipSet and dragging variables. I have no idea what you were trying to achieve with these. I'm guessing you're making certain assumptions about the way mouse events are received that are just plain wrong. Also, the logic in the MouseReleased method is wrong. The point you define as "start" is not necessarily the top left of the clip rectangle as you have it set up. But in this call
    MergeImages.GenerateFourImagesDragAndDrop(crop1.fileName, start.getX(), start.getY(),width ,height );you're assuming it is the top left point. I imagine this might contribute to your "blank areas" issue, but I'm not sure.
    Change your Selector class to the code below, and the rectangle will always work (at least it does on my machine --> java 1.6.0+)
    class Selector extends MouseInputAdapter
        ImageSelectionPanel selectionPanel;
        Point start;
        public Selector(ImageSelectionPanel isp)
            selectionPanel = isp;
        public void mousePressed(MouseEvent e)
            start = e.getPoint();
            selectionPanel.setClipFrame(start, start);
        public void mouseReleased(MouseEvent e)
            Point end = e.getPoint();
            end.x = Math.min(Math.max(end.x,0),selectionPanel.image.getWidth());
            end.y = Math.min(Math.max(end.y,0),selectionPanel.image.getHeight());
            selectionPanel.setClipFrame(start, end);
            System.out.println("START="+start);
            System.out.println("END="+end);
            Rectangle clip = selectionPanel.clip;
            if(clip.width > 0 && clip.height > 0)
            MergeImages.GenerateFourImagesDragAndDrop(crop1.fileName,
                                                      clip.x,clip.y,
                                                      clip.width,clip.height );
        public void mouseDragged(MouseEvent e)
            selectionPanel.setClipFrame(start, e.getPoint());
    }You will see that a new problem surfaces. That problem is that generated patterns affect previous ones. I imagine this has to do with your extensive use of static variables. Any swing person will tell you that a static GUI component constitutes as a bad idea in the majority of situations. But I'll let you deal with that.

  • Automatic slideshow/movie creation from rolls

    Hi All;
    My concern is how to automatically create slideshow from my rolls. I'd like to select all my rolls and then create slideshows for each and finally export slideshows as movies named as roll.
    Please tell me if I'm wrong. Please some ideas.
    iMac   Mac OS X (10.4.5)   CoreDuo

    Hi Kris,
    Click on the roll title, hit the slideshow icon
    set up the slideshow the way you want.
    When done, go to share>export and choose the Quicktime tab and choose your options then export to the desktop.
    do this for each roll

  • Exporting image sequence in ProRes 4444 gives black movie

    In QT Pro, I'm exporting a movie made from an image sequence.  If I export using ProRes 4444, all I get is a black movie file.  If I export using other codecs, it works fine.  Any ideas what might be wrong and how to fix this?
    Thanks!
    G

    Sorry, but you've posted this in the Audition (Audio) forum.  I suggest you repost in the appropriate forum.  Good liuck!

  • QTPro 7 won't open image sequence?

    I recently bought a new ASUS computer with Windows 7 and added QTPro7 to create .mov's from jpg image sequences. I've done it numerous times on my older HP6226
    with Windows Vista.
    It works sometimes, but not others and I can't see why...i.e. I tell it to open a sequence, select the first image in the sequence, and nothing happens...other times it works fine.
    Any suggestions welcome.
    Thanks!

    *2 weeks later...*
    no replies? No matter...I'm just creating an .avi initially, then
    saving as an .mov.

  • Quicktime Pro 7.6.9 crashes when I try to import image sequence

    Hi,
    I'm running Quicktime Pro 7.6.9 on a Windows XP machine with service pack 3.
    I shot some timelapses with my Nikon D7000 as jpegs and while trying to import the image sequences into Quicktime so I can export them out as .MOVs, I noticed that Quicktime crashes when ever I try to import a sequence that has 240 or more pictures. Most of my timelapses have 240 or 360 pictures. I was able to import a sequence that had only 180 pictures. Does Quicktime Pro 7.6.9. have an image sequence limit that I don't know about? I don't have any sequences that are anything between 180 and 240, so I can't test out numbers like 190, 200, 210, etc.
    Any ideas on what's happening?

    The files are 4928x3264 JPEGs. I'm trying to make 1920x1080 .MOV files. Quicktime crashes as soon as I select the first pic from the image sequence.
    I tried another sequence that had 600 pics and it worked fine, so it's obviously not some sort of image limit. But I can't figure out why these three sequences that each have 240 images would cause the program to crash everytime.

  • Can I create a RAW image Sequence in Photoshop CS6?

    Hello Photoshop Gurus,
    I'm posting this because I've tried searching for an answer but I've only found one and it doesn't work for me.  I'm trying to create a RAW image sequence in Photoshop CS6 on a mac.  the box is greyed out.  The only answer I've found is to disable jpeg support in preferences but that didn't work.
    Just trying to create a timelapse from an image sequence without having to spend $20/month renting After Effects!
    Thanks!

    Do you have the Extended version of photoshop cs6?
    (not sure if you need the extended version or not)
    more info:
    Photoshop Help | Importing video files and image sequences
    It might be that you need to convert the images to another file format such as tif.

  • Audio for image sequence

    Hi all -
    I am doing some animation for a tv pilot and need to get the movie file into separate image sequence and audio files to import into my animation software. I was able to extract segments of the movie into image sequence, so that is no problem .... what i need to do is get the audio into a separate file. I tried sound to wav and ended up with a blank file.... i am using win xp .... any help would be appreciated.... thanks....

    It "sounds" (no pun intended) like your source file is "muxed". This is the format of Flash and MPEG 1 or 2. QuickTime Pro can't export the audio portion of the file.
    You'll need third party software to convert the file to QT formats (DV Stream is best).

  • How can i create a .mov file from image sequence with different durations

    how do u create an image sequence with different durations? image one stays for 10 seconds and image two may stay for 30 and so on. each one has a custom duration. can this be done with an apple script or a text file saved as an mov file?

    Hello Omar,
    The example code Programmatic Printing of TestStand Reports - Modular contains a sequence that will convert an XML file to an HTML file given the XML file's path and the path to the stylesheet.  It may need to be altered to fit with the modifications you have already made to the report generation routines, but I think it should definitely get you off on the right foot.  Let me know if you have any questions!
    NickB
    National Intruments

  • About convert to mov from TGA or TIFF image sequence

    Hi, When I try to convert TGA or TIFF image sequence to Apple Pro Res 422, just like below video,
    http://www.apple.com/jp/finalcutserver/features/cataloging.html#overlay-image-se quences
    an error message appear and failed to convert.
    Upload Failed Unable to open QuickTime movie - /var/tmp/fcsvr_ldsd.2872/task_copy_cashed_upload_COedHv : The file is not a movie file.
    any advice please. thankyou.

    Convert in QTPro Player 7 first.

  • Jumpy playback from image sequences rendered in Apple Prores and then exported to h264

    I will start by saying I have been using FCP since 1.0 and am in no way new to this software, but this issue has me going crazy.
    First the Specs:
    MacPro 2 x 2.66 Quad cor Intel Xeon
    16 gig Ram
    OS 10.9.2
    FCP 7.0.3 (sorry but I am not a fan of FCP10 at all)
    In other words, a beast of a system that has played back everything I have ever built on it for years until now. So now for the issue: I work with an amazing 3D Max builder and we have created a building animation exported from that program into and image sequence ( we have tried JPG, TGA and PNG still all with the same effect). I open Quicktime 7 Pro, build the image sequence, save as .mov, import into FCP and drop it into my 1080p30 Apple Prores (HQ ... we also tried SQ) timelines. The timeline renders perfectly and I can play the video perfectly through my system out of Firewire 800 to my Motu V4HD device which then converts the signal to HDMI to my 55" LED TV. The video and playback is perfect.... until:
    If I try to play back the same exact time line into an exported video file, the file will play back with random jumpyness in it. I say random since you can play it back 10 times and it will hiccup during playback at different spots in the video. If you review every frame in the file though using Quicktime 10, 7 or VLC viewer, every frame is perfect. So, it must be the data rate right? Wrong. I have exported now to H264 MP4, M4V, MOV , ect, etc at different data rates from 4mb to 40 mb per second. They all have the same randow jumpyness to it. So it must be my computer right? Nope. I have a Macbook pro that is more powerful than this machine and I rebuild the file using the same method (something I have done a thousand times before) and the exported file does the same thing on that machine. I had my friend do it on his machine... same thing. ERRRR....
    We have even tried using After Effects and Premier to the same result. Rendered it straight from Quicktime Pro, same. Rendered it to 720p30, same. Render it to 24fps, same. I had another editor render it using whatever methods he wanted to use... same. Tried Compressor, SAME.  Tried Adobe Media Encoder, SAME......We even, god forbid, used a PC running Premier and built the image sequence and rendered to h264 at 30fps, 5mbs.... @#$@#$ SAME!
    We just remade the 3D Studio Max export into a 60fps animation since I thought that the individual frames we appearing too far apart and thus causing the jumpyness. That was causing the playback of the upclose objects flying across the screen fast to appear jittery, but not the random playback jumps. The 60fps did smooth out the animation greatly during fast flybys, but the playback jumps are still there in all players, QT, VLC, the web, etc.
    I was starting to think this issue is realted to Mavericks, but since the PC did the same thing that is not it either. I have linked a sample of the clip below exported to 720p30, 25mbs... something that is much smaller than the original and should playback smooth very easily on any of my systems.
    FYI: I have now opened numerous projects I have edited over the last few years and noticed that all of them are now jumpy, so this isn't just an image sequence issue. While the other projects don't use image sequences and instead are shot footage edited together, there is still the random jump (far less than the image sequence as you will see) but they are now there... ***? I have cleared preferences in FCP which helps for a short period of time, but once exported I get the same glitch.
    As I said... I am stumped... ANYONE have ideas for me to try?
    Here is a sample file for you all to see and please tell me if anyone does not see the issue after playing it several times in a row.
    www.media3lv.com/switch/NORTH-sample-720p30_25mb-sec.zip
    One last thing to note... my main goal for these videos is YouTube or Vimeo playback via our company website. I have a few other animations online right now using YouTube and the problem is also showing there. At first I thought it was just my videos, but I have looked at numerous YouTube videos now showing 3D animation and alot of them are jumpy.
    www.supernap.com/supernap-building-design.html
    www.supernap.com/supernap-tscif-exchange.html
    These don't show the issue as bad since the camera fly is much slower, but why is this occuring and is it coming from my source, or is this a known youtube issue? I can program this using out own modules, but YouTube and Vimeo allow for multiple resolutions and a checker script which makes it easier to share over all devices at all quality up to 1080p.
    Advice is welcome and appreciated?

    I have tried at actual, full screen, using 1080p30 size from the original compressed to 4mbs (something my system can handle without blinking), 720p30, etc. etc. etc.  Nothing stops the jumps. Even the activity monitor shows only 5%-15% processing being used by QT and/or FCP.
    I plan to pull my old G5 out of the closet, it runs 10.6.8 and is still rock solid for video editing in FCP7.  If it plays smooth on that 8 year old system then I know it's Mavericks. I'll try that tonight. It floors me though why the original 1080p30 will playback perfect via FCP and Motu, but once I turn of external monitoring and just try to play it via the preview monitor it is jumpy as **** and then the exported file does the same thing.  So strange.  I even deleted prefences of FCP and that does help with screen playback initially, but it always gets jumps in it after playing for a while.
    I knew I should not have started using Mavericks and I HATE FCP10.

Maybe you are looking for