IMovie imports video with only still frame

I have converted video files from MTS to MOV and they play fine in quicktime.  But when I import them to iMovie, the video appears as one static frame the whole time while the audio plays fine.  I have tried to convert the files again and import those, but I'm having the same issue.  The format of the files is: H.264, 1920x1080, Millions AAC, 2 channels, 44100 Hz, 23.98.  Does anyone know what I'm doing wrong?

You might try sending it from QuickTime to iMovie by using File -> Export To -> iMovie...

Similar Messages

  • I couldn´t see imported videos with Adobe Premiere pro

    Hello:
    My name is Oren. I´m from Spain, and this is my problem.
    One month ago I bought a Toshiba Satellite 850-31M. It has an x64 processor, 16 GB of RAM and I have 2 hard drives, the c: an SSD of 500 GB and other of 1 Tb hardisk, configured as D:. It has a GeForce GT 630M graphics card with 2 GB of RAM. W8 operating system.
    I wanted to try the Adobe Premiere Pro CS6 and I downloaded the trial version. No problem, until I tried to import a video in the source window. Appears a small window that says "importing" and give to play in the source window and start .Audio be heard, but not the image. I've tried different video formats and always the same. The same video are seamlessly Quick Time and other video viewers ..... I do not know what to do, I think I've tried everything, even restart the computer to its factory settings and install Adobe Premiere vacuum and the problem remains. I tested with a trial of Premiere CS5.5 and got it. You hear the audio but no video . Insert the video in the timeline and recognizes it as such, even the first frame, but said, is not seeing in the "source", nor in the preview, only the audio.
    What could it be? Am I you could lend a hand I'm desperate?
    thank you very much

    Hello:
    I have the vídeos in a hard-disk. I'd tried in different video formats and
    always the same. I hear the audio but I couldn't see the video image.
    El jueves, 25 de abril de 2013, Jim Simon escribió:
       Re: I couldn´t see imported videos with Adobe Premiere pro  created by Jim
    Simon <http://forums.adobe.com/people/JSS1138> in Premiere Pro - View
    the full discussion <http://forums.adobe.com/message/5265806#5265806

  • Iphoto 9.5.1 will not import videos with .mpg extension from my pictures folder and keep getting a OSStatus error-54. Is there a way I can import such videos to the iphone library?

    iphoto 9.5.1 will not import videos with .mpg extension from my pictures folder and keep getting a OSStatus error-54. Is there a way I can import such videos to the iphone library? Pls help.

    This is what that error means:
    -54
    permErr
    Software lock on file; Not a subscriber [permissions error on file open]
    Download and launch  BatChmod.  Put the videos into a subfolder and drag that folder containing the video files into the Batchmod window.  Make sure you are the owner and have R,W, X access as well as the group.  Everyone will have R only.
    Check the Change ownership and privileges, Unlock and Apply to enclosed boxes and then click on the Apply button.  When done try importing the files again.
    OT

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • Importing video with sound to GarageBand 2.0 and iOS 7.0.4

    Importing video with sound to GarageBand 2.0 and iOS 7.0.4
    My daughter has an iPad 2 with GarageBand 2.0 and iOS 7.0.4.  She would like to import a video file which has a sound track on it to GarageBand for iPad so that she can add an additional sound track to it.  The video/audio file to be imported would be in AVI, MPEG2 or another iPad compatible format.  Is this possible? If so, how would the mechanics work?  Would you: (1) load the file into the Movies section of iTunes and import the file from the Movies section of iTunes; (2) save the file onto an SD card and import the video/audio file from the SD card by inserting the SD card into an "SD adaptor" on an "iPad Camera Connection Kit"; or (3) email the video file to yourself and upload it to GarageBand from email?

    This is part of a mobile training application and I allow the learner to record an audio response in addition to viewing the videos.  When they record a response, you can hear the playback so the device has its volume up and working when the app is running.  Since I posted this issue, I switched to .flv video and that plays ok.  It's apparently the .mp4 video that's a problem.  I'm encoding it with ffmpeg and suspect that it's something with the settings.   Do you have a recommendation for mp4 settings for OSMF?

  • Why doesn't iMovie import video directly from the iPhone 3GS

    We here quite frequently that Apple offers a better overall experience than the competition because they make the whole widget... I was SHOCKED to discover that iMovie will NOT recognize my iPhone 3GS... Doesn't Apple make both products and their OS's (Yes, I know they make both)?
    iMovie imports video from my FLip HD just fine... This is very disappointing... And yes, I figured out how to do it... Import it to iPhoto, export it as a .mov and import it to iMovie... This is crazy, Apple!

    What I find shocking is that if you open iMovie and select "Import from Camera..." the iPhone doesn't show up.
    For further clarification, I have turned off the option to open iPhoto or Image Capture automatically when a camera is attached. I don't that option to import photos from my camera because they are automatically imported to my computer via the eye-fi card in my camera.
    I do expect that when I open iMovie manually and select to "Import from Camera..." that the iPhone will be recognized as a camera. My FLip mino HD is recognized and it is awkward to then have to open iPhoto, import the movies, export the movies and then import them to iMovie to modify them and move them to my Apple TV.
    I have provided Apple my Feedback on both their iPhone and iMovie sites.

  • 16:9 Imported video does not fill frame in IMovie 09

    I have imported video shot with a Panasonic HVX 400. The raw imported MP4s show up as full screen 16X9 videos when I view them in Quicktime, but as soon as I import them into IMovie they end up with a large black box around them, looking like they're trying to fit them into a 4:3 apsect ratio. I have no idea whats happening. Any suggestions?

    I also successfully created a still frame to a new project I created for this purpose.
    Move to a frame in your EVENT, control left-click and select "Add Still frame to project" from the pop-up menue. It will be added at the END of your selected project.
    After that, I am still trying to find a way to save that still to iPhoto'09 as a photo.

  • Importing pre-made menus- still frame or moving video?

    I am new to DVD Studio Pro and I recently authored a DVD that required importing a pre-made menu. The file was a psd and as 640 X 480 in size and about 180 dpi. The menu showed up in my asset window as a Quicktime picture. My question is did DVD SPro somehow convert the still image menu into a moving video file? I ask this because of two reasons...1) the menu plays back as though it's "playing" -when you click the menu's play button, the menu looks for a split second as though it pauses in much the same way a moving video image would look when you "pause it. 2.) The menu does not appear sharp- the text is not crisp as you would expect a still frame to be.
    Did I import the menu wrong? I imported it as an asset. I tried to import as a template but the file is "grey" in the import box and you cannot bring it in this way. Also why did it convert the psd (photoshop file) into a quicktime picture?
    Thanks!

    Menus (even still menus) are moving video. DVDSP will encode them to MPEG2 for the duration of your menu's loop.
    Try importing a still of 720x534 (square) pixels, not the size you used, for a 4:3 NTSC menu. DVDSP will have less scaling to do, and this might result in a sharper picture.

  • Imported Video comes in one frame at a time

    I am working with a Sony DCR-TRV310 NTSC camera connected to my MacBook Pro (OS10.6.7) through a fire wire cable.  I was able to import the video into iMovie 9 but each frame comes in as a separate clip.  When I press the space bar to view the project, the frames go by very quickly.  The only thing I could think of doing was to slow down the speed of the frame but this will take FOREVER if I have to do it for each frame. 
    I am looking to edit old home movies that were transferred onto Hi8 tapes on a digital setting.  I was very proficient with earlier versions of iMovie but have not worked with iMovie 9 with imported video.
    I have found some of the posts helpful...breaking up projects etc. but could not find anything relating to this problem.
    Any help would be greatly appreciated.  I am working on a video of my brother's life for my mom.
    Many thanks,
    Madalyn

    I have been doing a lot of reading of the posts and realized that the frame issue is just part of the import process.  What I can't seem to figure out is how to deal with the fast and choppy video.  I have two mac book pros, one with iMovie 9 and one with iMovie 6.  I checked on the available space and it is not an issue as I over 100 GB available on either machine.
    Any help on what to do about choppy video would be greatly appreciated.
    thaks

  • Problem with rendering still frame capture in FCP7

    I'm a hack, so let's keep that in mind as I ask this question....but I *did* try to look through the forum for a similar issue before I created this post.
    My situation:  I am pulling some HD video from a Canon Vixia into FCP and basically just piecing it together with some minor editing to match music beats, etc. for some local sports leagues.  Generally I find no issues with FCP, although I've only been dabbling with it for a few months.
    My problem:  My latest creation here: http://anothermotherproductions.smugmug.com/Movies/2011-Lacrosse-sample-movie/17 693649_L5rr8X does something annoying.  I pulled a still frame from the video clip to let it hang there for a few seconds.  See the 1:01 mark.  The still frame looks clear in FCP, but when exported (and I've tried a few different formats, like h.264, pro-res, and "sharing" it for iPod) the image is ugly - looks like a motion blur from an old TV or something.
    I've checked that the last frame of the video clip is the frame BEFORE the still frame, so walking step by step through the sequence reveals a normal sequence of motion, with the final frame "hanging" there for a while because its the still frame.
    Make sense?
    Anyone have constructive input?
    Thanks.

    Thank you so much - that helped tremendously.  Image looks great now, AND I learned something.

  • Problem Previewing HD Project on NTSC Monitor - Only Still Frames...

    Hello all.
    I have a calibrated NTSC That i purchased for accurate monitoring of my projects.
    I thought I tested on a HD project, but for some reason, now that I'm working on a major project it's not working properly.
    When I'm editing, it will display still frames but not video. Before anyone suggests it, i have triple checked that the External monitor setting in the view menu is on All Frames.
    Any suggestions?
    -aj

    But it won't for HD. For HD you need an HD capture card and HD monitor.
    If you are working with DVCPRO HD from a Varicam or HVX, then you can monitor to an HD monitor routing thru an AJ-HD1200 or 1400...or if you have a capture card with analoge outs like the Kona 2 then you can monitor on an SD monitor.
    You cannot monitor HD with the same setup you use for SD. Sorry.
    Shane

  • What can I do about error -50 in a video with only short clips (less than 1 sec)?

    I get Error -50 when trying to export a music video with lots of short clips I just made in imovie 8.0.6. After googleing the problem i realize that its probably the short clips (under 1 sec) that are the problem.
    Is there any way to get around this?
    Would really appriciate the help!!!

    As a test Depress an hold the option key while launching iPhoto - create a new test  library and import a few photos into it - report back with the results and if this problem repeats in the new test library
    LN

  • Importing video with correct date

    I'm having issue importing videos into iphoto with the original date of the video. I'm importing from a canon vixia HFS10, when i tried it a month or so back it went into iphoto correctly, with the original date but now whenever i try it, even with the same videos that worked date wise before, it only imports into iphoto with the date that i actually imported it with.
    Any ideas?
    I know you can alter the date via the edit options, but this seems a bit backward when i know, somehow, that i can import the video automactially with the date.

    i only imported the videos from the same camera, one time they went with the date it was taken, the other time i tried a couple of weeks later it only imported with the date of import so it's not the camera

  • Importing video with Canopus 300

    Having a problem with the Canopus 300 powering up...I have read that if connecting with firewire a external power supply is not needed. Is this true?
    Also, do I need another software package to import the video or will IMovie import directly?

    Does it have an advantage over iMovie 06 for importing? If I edit in iMovie 06 or iMovie 08 why use it?
    Other than being a small, independent capture dedicated application compatible with more operating systems, it probably provides little or no advantage over iMovie other than its A/V monitoring capabilities. I use it on a very old and very slow laptop which I keep connected to my entertainment system for occasional capture of Sat TVRO DVR content I put on my iPod/iPhone for viewing while spending hours in medical waiting rooms with my dad who is in his mid-80s and has multiple appointments every week. (I.e., I'm not editing anything here, just converting it so I can watch it at a more convenient time and place.)

  • Help!  When I import video it only shows up as audio

    Every time I try importing video or even try previewing it, it will only playback and show up as audio. I have tried both Quicktime and AVI video formats and nothing seems to work. I have been able to import an audio only file with no problem, but I really need the video clips and I don't understand why they won't work. I tested them on my computer and they work with other programs. Is there a setting on Adobe Premiere Pro that I neeed to change, or am I just doing something wrong?

    Hi ya Jacob,
    For honor sake let me say that I hope you aren't downloading files to more or less steal them. I, for instance, have a sort of religious/philosophy channel at YT and I'll sometimes use short excerpts from movie clips for teaching purposes. I don't know if it's technically legal to do so, but no one seems to object to my using 30-seconds or so from a clip in this way.
    I'm sure there are people here who can tell you some easy way to do this with a program you have to pay for, but having grown up watching too much Jack Benny has made me a such a tightwad that I will always do things the cheap way even if it means jumping through a number of hoops. So let me tell you my process of hoop jumping before someone else tells you the easy store bought method (otherwise known as the "right way").
    There are a number of ways to get something off YouTube as you've no doubt learned by now. However, most of those ways will only download the low quality version of the file. YT also keeps high quality versions of many of those files (depending on what codec was used in uploading them to begin with) on a separate server. Sometimes a YT video will have an "HQ" button you can toggle to see the file. Sometimes they don't see it, but there is an HQ file somewhere anyway a lot of the time. To see that file place the following after the url:
    &fmt=18
    Here's an example. If you go to the following url it will take you to the regular low quality version of this particular YT video:
    http://www.youtube.com/watch?v=pVAZGNAxUNw
    Now you'll notice that there is indeed an HQ button you can push on this video to watch the high quality version, but let's pretend it isn't there and instead we'll use that little shortcut on the end of the url that I showed above so that the url now looks like this:
    http://www.youtube.com/watch?v=pVAZGNAxUNw&fmt=18
    No matter what download tool you use to get the video from YT, try to remember to use that shortcut ending piece for the url so the app will know without a doubt that you want the HQ version if one exists because sometimes these apps aren't able to find the HQ version without some help.
    I recommend downloading the free version of
    Any Video Converter. It will both download the YT video (the high quality version will be an mp4 file) and then it will convert it to something more usable of your choice.
    Another good download tool is called
    Orbit. It can download videos from other sites besides YT, but it always downloads the flv.
    Any Video Converter, unfortunately, won't let you change the file to an uncompressed AVI, nor to a DV-AVI. The highest quality it has available to convert the file to is NTSC mpg2 DVD standard, or you can choose to use the HD setting for a wmv file, but it takes a long time to do the latter, and considering the low quality of YT videos to begin with, seems kind of senseless to me.
    I then bring my new mpg2 file into the mpg version of
    VirtualDub and change it to an uncompressed AVI. And then I can easily bring that AVI into Premiere and either work with it natively or change it to a DV file (which I usually do before editing).
    There's a DV codec you can download that will allow VDub to convert the mpg2 directly to DV-AVI, but I don't trust it as I've noticed a lot of posts by people saying that it makes some of their other programs unstable.

Maybe you are looking for

  • Preview crashing on yosemite whenever i open a pdf file

    preview crashing on yosemite whenever i open a pdf file Hi, Ever since i updated to yosemite my preview app keeps crashing every time I open a PDF file. Can anyone figure this out ? Here is the crash report: Process:           Preview [10399] Path:  

  • Uncaught exception:DSSMa:INvalid State(5):19

    Anybody out there able to translate this to me in english and perhaps i can fix it. My problem is i cannot enter my messages or even start to text message it keeps popping up with this window??????

  • Reopen period in MM

    Hallo everybody, i have this issue in MM opening/closing periods. I opened the 3th period (MMPV).But i just realised that i have to do some postings in the 12th period .How can i open again December and do my postings? Is there a way to do this? Rega

  • Lost video preview when upgarding to 6.05

    Just upgraded from OSX10.4 to 10.5 and then had to upgrade FCP from 6.03 to 6.05 to get it to work. So now I have lost access to my second monitor under View > Video Playback, the usual list of output options is gone and just replaced with the word N

  • Why doesn't my bottom button work sometimes

    Sometimes it acts like its locked up and the bottom button won't work....