Importing two different video sources into FCP

I have captured footage from a Sony HDV 1080i using iMovie HD and imported it into FCP. I also have footage captured in DV-NTSC 720x480 format. I would like to use both formats in a video clip. However, whenever I import Sony 1080i footage into the timeline it needs to be rendered and it takes a fair amount of time. Is there anything I can do to the footage so that it does not need to be rendered everytime I drop it into the timeline?

You have to elect which timeline you want, HDV or NTSC DV. Either one must be rendered.
You might try a recapture of the HDV and downconvert it in the camera on capture.
Settings are in the manual
david

Similar Messages

  • I would like to import two different cf cards from two different cameras into the same project/folder and have them be in order of the times they were taken, is there a trick?

    I would like to import two different cf cards from two different cameras into the same project/folder and have them be in the order of the times they were taken, any ideas on how to do this?

    Just import them normally and sort the project by date. They will fall into place. If you tried this and it isn;t happening then make sure the data and times on the two cameras are identical and make sure you are sorting by date and time and nothing else.

  • Cannot import video files into FCP

    Every time I try to import a file (.mov , .mpg , .m4v) FCP gives me an error message reading "File Error: File Unknown" If I try and import through the drop down menu, the error reads "File Error: 1 file(s) Recognized, 0 access denied, 1 unknown"
    The only file that seems to work is a .avi
    This started happening when I upgraded to Snow Leopard.
    Please Help

    Here's a couple solutions ...
    I had this problem this week as well. Suddenly I couldn't import any type of media into FCP. After trying a few things like reinstalling FCS 2 and talking to other people, I called up Apple Support. They walked me through a few more efforts to solve the issue or at least get an idea of what causes the problem.
    What we discovered is that when I created a new user profile for my iMac and logged into that profile, everything in Final Cut worked fine. I could import media with no problem. THUS, the issue seems to be connected to my computer profile. So I was presented with two options:
    Option 1: Create a new user profile and either migrate all my content over to it or simply edit from that profile.
    Option 2: The Nuclear Option. Back up all your content you don't want to loose, pop in your OS X disk, restart the computer holding C, and select the option to erase your hard drive and install OS X from scratch.
    I figured that after two years of a **** of a lot of editing and other work on this computer, it was time to just go for the Nuclear option and obliterate everything off of it and start fresh. Takes a while to do, but I've just confirmed that I'm able to import media again in FCP.
    So, sadly it's not a real simple option like deleting your preference files, like other FCP issues, but there is way to clear up this issue. The important thing to note here is that reinstalling FCP didn't work for me, and doing an Archive Install of OS X which still keeps my user profile essentially intact also keep the problem intact and solves nothing.
    Now, if you have to get a project your editing out the door right away, just create a new profile and get busy editing. But once that project is done, or if you have the time right now, I think the best option is the Nuclear Option. Back your stuff up and then clear your hard drive out and start anew.
    I hope that helps guys. I know how crazy I was going not finding anything on a forum to help me out.

  • Two different video files in the same clip

    Well, I've been looking around and have been wondering if it's possible t have two different video files play at the same time, both being shown at the same time, for example, what I would like to do is; I have two separate video files, one of me playing rhythm on a guitar, the other of me soloing, and would like the to play at once, both being visible at the same time, one on each side of the screen.

    if you're using iMovie vers≤6, look at the plug-in makers for some PIP (picture in picture) plug-in...
    geethree.com
    imovieplugins.com
    stupendous-software.com
    or, in case you own QTpro, you can use that ..
    or, if you like total control, consider purchasing/'upgrading' to FinalCutExpress..

  • Problem in importing two different classes with same name...

    I have to import two different classes in my program with the same name....
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    //    I AM USING THE DOCUMENT FROM W3C PACKAGE HERE....
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");
                     int length = images.getLength();
                     for(int i = 0;i<length;i++)
                         Node image = images.item(i);
                         String tempAltText = image.getAttributes().getNamedItem("alt").getNodeValue();
                         altText = altText.concat(" ").concat(tempAltText);
                     }and the error i am getting is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:132: incompatible types
        [javac] found   : org.w3c.dom.Document
        [javac] required: org.apache.lucene.document.Document
        [javac] d = builder.parse( is );
        [javac] ^
        [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:133: cannot find symbol
        [javac] symbol  : method getElementsByTagName(java.lang.String)
        [javac] location: class org.apache.lucene.document.Document
        [javac] NodeList images = d.getElementsByTagName("img");
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 3 errorsany idea ..how to resolve it
    Edited by: ping.sumit on Jul 16, 2008 3:39 PM
    Edited by: ping.sumit on Jul 16, 2008 3:40 PM

    now i changed the code to
    import org.apache.lucene.document.Document;
    import org.w3c.dom.Document;
    org.w3c.dom.Document d = null;
    try{
         System.out.println("in author");
                   URL url = new java.net.URL(urlString);
                   java.net.URLConnection conn = url.openConnection();
                   BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   while ((in.readLine()) != null)
                        //tempString = tempString.concat(in.readLine());
                        String temp = in.readLine();
                        tempString = tempString + " " + temp;
                   System.out.println("the string in author" + tempString);
                    in.close();
                    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder builder = factory.newDocumentBuilder();
                     InputSource is = new InputSource( new StringReader( tempString ) );
                     d = builder.parse( is );
                     NodeList images = d.getElementsByTagName("img");and their is only one error i am getting ...and that is
    [javac] C:\Documents and Settings\sumit-i\WolframWorkspaces\Base\WolframNutch\src\java\com\wolfram\nutch\indexer\InfoCenterFilter.java:20: org.apache.lucene.document.Document is already defined in a single-type import
        [javac] import org.w3c.dom.Document;
        [javac] ^
        [javac] Note: Some input files use unchecked or unsafe operations.
        [javac] Note: Recompile with -Xlint:unchecked for details.
        [javac] 1 error

  • Sync audio with two different video files to create split screen

    I want to sync two different video files to a high quality audio file and create a split screen from there in Final Cut Pro X. Help please?

    I'm following along at home, Tom, trying to make sense out of your instructions. (Editorially: This kind of operation is among the reasons I thoroughly loathe FCPX.) This would have been easy in FCP7. Perhaps it's actually the same amount of work (you are describing operations in FCPX I have not bothered to try yet—too scared) but it's far more direct the old way: Find sync points for all three files, stack them up in a timeline, nudge till precisely matched, apply effects.
    But I'm glad you're here to help us through this stuff!

  • Migration Jobs - two different SCCM sites into one

    Migration Jobs Question.  
    Migrating to SCCM 2012 R2.   I have two different Migration Source sites.    One is 2007 and one is a 2012 R2-Development.   Trying to merge both to one SCCM 2012 -Production site.        
    SCCM 2007  has been moved to 2012 Prod, now I'm looking to move 2012 DEV to prod.   Do I lose the ability to run "Objects modified after Migration" on the 2007 object data?
    As I understand, once I change the source hierarchy, all previous Migration Jobs are removed. 

    Hi Ronni
    When I add a new Source Hierarchy,  It looks like it removes the old.   
    So this is what I just tried:
    *Changed the Source Hierarchy to SCCM 2012DEV
    **Didn't rerun thought the whole process.  Noticed that the 2007 Hierarchy was removed.  Source Site Code 2012DEV,  
    Status Ready for next gathering Process"
    Then I:
    *Clicked "Specify Source Hierarchy" 
    **Noticed  that the 2007 was part of the drop down list
    previous Migration Jobs returned
    I guess the next step is to migrate a item from 2012DEV to 2012PROD and see what happens.  

  • Loading videos dynamically into FCP?

    Does anyone know if it is possible to load videos/images into FCP dynamically? I know it can be done in Flash using an XML file but can it be done similar in FCP?
    Thanks in advance for any help!

    Well, if you mean relinking an instance of a clip in a sequence to a new quicktime file, then yes.
    Final Cut will not support authoring these types of interactive or dynamic relationships into QuickTime movies, but you can use QuickTime Pro to take movies you make from Final Cut and build in the type of functions I think you are referring to. IIf you have FCP, you have a QT Pro license.
    Read some of the tutorials you can find hhere: I think this is what you are looking for::
    http://www.apple.com/quicktime/tutorials/refmovies.html
    but no, Final Cut won't do that kind of stuff by itself.

  • SLI - Can I use two different video card versions for SLI?

    Hello,
    Can I use two different generations of MSI video cards that implement the same GPU for SLI?   
    The two video cards are:
    MSI N260GTX-T2D896-OCv2 GeForce GTX 260 896MB <-- What I currently have
    MSI N260GTX-T2D896-OCv3 GeForce GTX 260 896MB
    MSI N260GTX-T2D896-OCv4 GeForce GTX 260 896MB
    The main difference between these three seems to be that the OCv3 has two fans and a different heatsink than the OCv2.  The OCv4 has one fan like the OCv2 and but it is located in a different location and some weird spikey heatsink thing going on.  I already have the OCv2 but I am looking to get another card for SLI and newegg doesn't sell the OCv2 anymore.  The important thing is that I am looking for is stability and it seems that the most ideal setup would be to get identical cards.
    By the way, why are there so many versions (updates?) to this card?  Have there been issues related to the card that necessitate a revision?
    Thanks

    Different coolers(HS and fans) and possibly different makers of vRAM.  But, you should be able to run SLI without issues regardless of the versions.

  • How to import two AVI video files & convert to one FLV ?

    Status:
    - Newbie using PC & Flash CS3 ver9l
    - I can import a single AVI video file and convert it to an FLV video.
    Problem:
    - I have two AVI video files... one 4GB (20 minute) long and one 2GB (10 minute) long... and want to combine them to have a single 30 minute long FLV video file.
    Question:
    - Can I do this in Flash? When I "convert" a single AVI video to a FLV using the File, Import method... I can't really see the video on the Flash time line. I'm a newbie so I'm probably doing something wrong.
    - I tried doing a File, Import for file-1.avi and then doing it for file-2.avi... but the two were on top of each other... and not end to end.
    Maybe some kind sould will walk me through this.
    Thanks for any help.

    Your not going to be able to combine two videos as one in flash, if your using Win try Win Movie Maker, I believe you can drag both into a WMVM timeline and can then save as one file, then you can use AVC video converter or the like to encode them into an .flv or.f4v file.

  • Importing Flip and iPhone clips into FCP

    What is FCP's preferred video format?
    I have a funky project consisting of clips from iPhone and a Flip Mino HD camera. When either of these are imported directly into FCP, they won't play without rendering, and any edit or trim "undoes" the render, forcing them to be rendered again... and again...
    I'm guessing the best strategy is to convert them -- before importing -- to a format that FCP will like better and will play smoothly, without constant re-rendering.
    So: what's the best format to convert them into, and what's the best tool for doing that pre-conversion?
    Or am I wrong, and is there a way to handle these Flip and iPhone clips in FCP without pre-converting them?

    Okay, that seemed to work. Thanks!
    But now there's a new, odd problem: I can't add transitions! After dropping these new clips in the timeline, they play fine without rendering... but whenever I try to add a transition (dissolve, wipe, etc.) between clips, FCP changes the 1 second transition to a 3 frame transition. And there doesn't seem to be any way to change the duration - no matter what I do, it keeps changing back to one frame. Strangely, I can add the normal transition to the end of the sequence, but not between clips.
    Am I missing something? Does the DVCPRO50 progressive format somehow prohibit modifications like transitions?
    (And should I start this as a new topic?)

  • Can't import LIVE TYPE files .ipr into FCP -  FILE ERROR: UNKOWN FILE.

    I have had this problem for a while and simply just worked around it. But now I am editing so much more that I want it the way it use to be.
    The Problem is FCP 6 will not let me import LIVE TYPE files. I have to render them into an .mov 1st in livetype. I use to be able to just drag the file into FCP and render it there after I tweeked it. Now it won't, it gives me this error- FILE ERROR: Unknown File.
    I have already uninstalled Live type along with its PLIST as well as FCP. Re installed and still keep getting the same error. I can't remember when it started, all I know is I want it fixed.
    Thank you for any assistance anyone can offer.

    What are the Project Properties settings? do they match the Sequence setting in FCP?
    What elements are used in your LiveType composition?
    Are you including images or background video?
    If so, post the codec that the video uses. If there are images, the file type and color space.

  • Can't import mxf-files (Canon XF100) into FCP 10.0.8 after Mavericks

    Hello
    It's not possible for me, to import mxf-files into FCP.
    I haven't yoused FCP for a couple of days, but today I could not import files from my Canon XF100, so i think the problems came with Mavericks??
    Does any of you have same problems?
    What to do?
    Kind regards
    Thomas (Denmark)

    Hi Russ -
    I downloaded the utility and driver from here:
    http://www.learn.usa.canon.com/resources/blogs/2012/20120223_xf_utilities_and_pl ugin_updates.shtml
    But after looking around realized it isn't updated for Mavericks yet. I was only given two files and both weren't in any sort of directory structure- here is a screenshot.
    Thanks in advance for your help!
    -Robert

  • Can't transfer/import XDCAM files from harddrive into FCP

    hi, i filmed all of my footage using an XDCAM and had to return the cams immediately. so i copied all the clips from the capture media to an external hard drive (everything within the BPAV folder) one to one. i also downloaded and installed the XDCAM EX Clip Browser on my MacBook Pro and can view the clips.
    the problem i have is that i can't import the clips into FCP. the "Import> SONY XDCAM..." feature in FCP won't allow me to access these files. the BPAV folder remains greyed out.
    what do i need to do to get the clips into FCP? is there a different plugin i need? the clip browser won't let me export the clips to any other format. i'm stumped. i run FCP computer on my G5 PPC Quad core. the file browser only runs on Intel macs. so i use my MBP to view the clips but that's all i can do.
    can someone please help me out ?
    many thx!
    fj

    in the spirit of armano'os last post and FYI: i picked up the cams on short notice, never used them before and there were no instructions. the ppl just told me to copy the files over to my HD, since i had to return the cams immediately and had no time to hook up the cams to FCP.
    the 'mistake' i seem to have made was that i looked at the data structure and saw that the clips always ended up in the CLPR folder within each BPAV folder - each in its own folder in that fiolder and with XML and data files - so i copied directly to that one BPAV folder i copied from the first capture media i moved to my hard drive instead of copying the entire BPAV folder from each capture media. however i tested the import immediately to see if it actually played back the files in the XDCAM clip browser and they did.
    i assumed all was fine with this method and it would save me a lot of duplicate BPAV folders... hopefully though this isn't the end.

  • Recording two different size windows into one timeline

    Hello, I wonder if anyone can help.
    I'm trying to capture two different size animations, one 900
    x 600 and one much bigger, say 1280 by 700....How can I get them
    into the same timeline? It seems captivate only allows one size
    frame recording per movie.....
    Any hints?
    cheers
    zig

    Hi zig
    The only way I can fathom this happening is to take Captivate
    and record the larger. Then use the Project > Resize option to
    reduce the size of the larger to match the smaller. Then import
    that/those slide(s) into the smaller.
    Or, you could go the other way around. Record at the larger,
    leave it at that size, then import the smaller into the larger via
    File > Import > Slides/Objects.
    Cheers... Rick

Maybe you are looking for

  • How do you delete voicemail messages from iphone 5s

    I'm trying to delete voicemail messages from iphone 5s.  Based on visiting previous discussions on this subject, I've tried "resetting network settings" and "turning airport mode ON, deleting messages, then turning airport mode OFF" -- to no avail. I

  • Creating a soft return in Pages for iPad

    I would really like to create a space between numbered items in Pages but I can't figure out how to do it.  Does anyone know how to create a soft return in Pages for iPad.

  • Restore deleted users in OID

    Hi, We have OID configured with our OIM system. I need to restore the users I manually deleted from the OID. I am not able to find this. Can anyone please let me know the steps to recover the deleted users from the OID. Thanks for the help. Ishank Ma

  • Tooltips sometimes don't dissappear

    Tooltips occasionally don't dissappear when you move the mousepointer away from them. Most of the time it is possible to let them dissappear anyway by clicking the mouse on them, but sometimes even that doesn't work. I noticed this on a number of Win

  • YouTube sounds stutter with headphones in iOS 7

    In iOS 7 with my iPad 2, YouTube's sound is stuttering, sometimes completely missing. This only happens with headphones, the device speaker works fine. Also, most other web players work, so this only applies to YouTube. What can I do?