Import/exporting uncompressed video multiple times

Hi guys I'm running FCP version 5. I want to use a plugin called NeatVideo to remove grain from my footage however it is not compatible with FCP 5. My friend has FCE 4, which NeatVideo is compatible with.
The question is, if I export my film from FCP 5 as an uncompressed.mov, import this into FCE, add the plug in, and then export from FCE again uncompressed, and then reimport into FCP once more to get it ready for my final export for DVD SP, will all these imports/exports result in a loss of quality?
My guess is no since it will be uncompressed? If so how to I prevent any loss of quality? Do I have to set the FCE project settings as uncompressed also?
I'm kinda new to all this so your help will be much appreciated!
Thanks. T

Quick question Jim,
How do you make a 'file recognition' import to another version of FCP or FCE which is installed on a completely different PowerMac?
Is it simply exporting it as uncompressed - which the new FCP/FCE will recognize?
Also when it is imported into the new FCP, will have I have to set the project settings 'Compression' to 'Uncompressed' also to ensure it remains the same quality without further compression?
Thanks. T

Similar Messages

  • How can i export uncompressed video from motion 5?

    how can i export uncompressed video-material from motion 5?

    Export with Current Settings if you are already working uncompressed. Otherwise, Send to Compressor, and choose the codec you want there.

  • I can't export uncompressed videos

    I'm trying to export my videos as uncompressed AVIs so I can compress them on a seperate encoder, H.264, so I can put them on youtube and retain high quality videos.  However, every time I try to do this, once it's finished exporting, I click the video to test it and I only get the audio.  I doesn't matter how big or small the video is or what's on it, whenever I try to export an uncompressed video, I lose the actual video in the process.
    So is there a way to fix this? Or if not, is there a way I can export the video without the enormous loss in quality I get whenever I do an AVI export? Thanks

    sorry I wasn't being very specific.  When I said uncompressed AVI, I mean the videos were orignially AVIs and I simply wanted them to be returned as the raw footage but in the reorganized, edited form I put them in.  Like rearanging the videos without having to encode them again and deal with the loss of quality.  Virtual Dub does this but it's harder to work with and more limited than premiere pro. 
    Still not specific enough. There are two ways of exporting an uncompressed AVI from Premiere Pro: you can set the Format as Uncompressed Microsoft AVI (which you shouldn't; that's only for AJA hardware), or you can set the Format to Microsoft AVI, and then select "None" from the codec dropdown. It's the latter than you want to do.
    You might want to look into the Lagarith Lossless Video Codec or the Ut Video Codec Suite; both are free visually lossless codecs that will be smaller than uncompressed. They'll appear as codec options under Microsoft AVI. Lagarith installs both x86 and x64 (required for CS5) versions; for Ut, you need to install both the 32-bit and 64-bit packages.

  • Import/export properties of multiple numeric limit steps

    Hello
    I have a question to the property loader and the import/export tool in TestStand 3.5.
    When I want to export the limits of a sequence with multiple numeric steps with the import/export tool, I press the Limits button to include the limits into the 'selected' field of the properties tab. But for the multiple numeric step the limits are included not for all indices but only once with an question mark instead of an index (Result.Measurement[?].Limits.Low, Result.Measurement[?].Limits.High, Result.Measurement[?].Limits.Comp).
    The property loader step acts the same way. 
    What can I do ?
    Thanks
    Olli

    Hi Olli,
    For the multiple numeric limit test, you will need to individually specify which numeric limits you want to export. Lets suppose you have 3 sets of limits for your multiple numeric limit test. If you wanted to export the first set, you would use the syntax
    Step.Result.Measurement[0].Limits.Low
    Step.Result.Measurement[0].Limits.High
    You will need to do this for each set of limits you have in your array. Simply replace the "?" with the index of the element in the array.
    Hope this helps!
    Best Regards,
    Jonathan N.
    National Instruments

  • How to avoid uncompressing bitmapDatas multiple times

    Hi,
    Not sure if this should go here (performance) or IOS section, since I mainly have this issue on iOS but I think its on all air players.
    When a bitmap (for exemple a bitmap in a fla) is added, you can see with Adobe SCOUT (great tool btw!) that it is uncompressed when added. Allright.
    The bad thing is, if it is removed from stage, even if you keep it in memory for reuse, it is very often re-uncompressed when redisplayed. I mean 'often' because it seems erratic. If it stay removed for just a second, most of the time it won't be uncompressed again, but after 3 or more seconds, most of the time it will be (some kind of garbage collector in the "video" memory ?)
    Setting its quality to lossless in the fla helps the decompression goes a bit faster (30-40 % I would say), on the detriment of swf size, but does not solve the main question : how can I force an animation (made of bitmaps for example) to never be uncompressed again as long as I dont tell it to to be "disposed" from wherever this is stored ?
    Having it permanently on screen hidden somewhere is just too much a performance killer to be considered a solution when you have many. CacheAsBitmapMatrix could be usefull for vector data  on this issue (not sure), but drawing a bitmap seems a bit stupid if you do already have bitmaps.
    It might not seem a big issue but in a game with effects etc. most of those will only show up once every 2 to 10 seconds, but if you loose 5ms/frame for 40 frames each time one does, and you have many, it really impact performance on devices like ios etc, whereas memory doesnt seem to be the problem here, it happens with low or high memory usage both.
    If anyone knows a tip, thanks a lot!
    EDIT : Tests made with gpu mode, flash builder 4.7, air 3.5, iPad3 (or other), release build.

    In my experience, the second solution here: actionscript 3 - Bitmaps Being Cached As Bitmaps - Stack Overflow is the one that gave me best results thus far, even when loading a swf (as opposed to a bitmap) which contains bitmaps inside. To avoid this decompressing on the run (on demand) you can instead request flash to decompress it on load. This will increase the load time but improve the perceived performance of the app since a separate thread takes care of the decompressing. This of course means no jitter or skip when the image hits the screen:
    var fileLocation:URLRequest = new URLRequest(levelToLoad);
    levelToLoad = "testLevel.swf";
    var levelLoader:Loader = new Loader();
    var loaderContext:LoaderContext = new LoaderContext();
    loaderContext.imageDecodingPolicy = ImageDecodingPolicy.ON_LOAD;
    levelLoader.load(fileLocation, loaderContext);
    Embedded images (via code) are not supposed to be compressed, so this problem shouldn't occur with applications that do so. However, if you are like me, and you use the Flash Pro IDE to import PNGs or other bitmap assets, Flash Pro compresses them as JPG by default, using the setting provided by the image itself.
    To fix this and avoid these decompression issues, simply go to your Flash Pro asset library, right click on the image you want to change, click on properties and select "lossless / PNG/GIF" as compression. This will increase largely the load time but you will have the much better perceived performance discussed here. This should be done in addition to implementing the code above, or it will make no difference.
    In my experience the frame rate average dropped only by one frame per second, but it's much more consistent without any skips or lags which is essential for games.
    See: http://help.adobe.com/en_US/as3/dev/WS52621785137562065a8e668112d98c8c4df-8000.html
    And
    http://www.bytearray.org/?p=2931

  • Imported & Exported HD Video Imovie '11 Big Loss of Quality

    This is plain outrageous i noticed this flaw about a week ago.
    I noticed how iMovie '11 degrades the quality of any HD Content whether it be a an Imported file or card or camera regardless. And Yes in the Prefrences FULL QUALITY is selected under the video tab. The Exported Content is the same Poor quality under highest settings quality FULL 1080P as imported even if exported a Quicktime X file H264 compression. The bottom line the imported content looks horrible in iMovie '11 it exports horrible too under the highest settings.
    I tried Final Cut X on the other hand and It was Great no loss of quality there via the comand import Imovie Project. But I did notice how Final Cut X messed up on some of the transitions and the titles were off but that was an easy fix
    Something has to be done iMovie '11 When Are you going ship '12 or '13

    Welcome to iMovie Discussions.
    (..Sob!..) If you can bear the anguish and argument and technicalities and angst, Search for "Steve Mullen" and follow any of those threads: you'll find all manner of description about what's happening, what's going wrong, how to correct it, whether it can be corrected ..and so on, and so forth..
    (See this thread: http://discussions.apple.com/thread.jspa?messageID=11846858&#11846858 ..)
    I've never noticed this problem: but when I HAVE seen poor quality - by adding an iMovie '09 title onto pristine DV footage, like this:
    ..I've followed Karl Petersen's instructions about how to change it into (apparent) top-notch quality like this:
    Karl suggested opening the exported movie in QuickTime, and pressing ⌘ and 'J' and ticking the 'High Quality' box in the lower-right corner of Video Settings:
    See here, and click on 'Start Slideshow'.
    Steve disagrees, I think, with this, and says that this simple fix doesn't work.
    Try it, and see if it works for you.

  • Important QT uncompressed video into 16:9 timeline but appears as 4:3

    Hi,
    please tell me what I am doing wrong or not doing? I broke my 1-hour movie into parts and export them by segment, export, quicktime movie, make movie self contained. Okay so I have QT and I want to combine them all in one timeline to output the whole movie. When I import the folder w/ all my QT segs, then put them in the 16:9 timeline, only the first QT seg appears 16:9, the rest as 4:3, I even removed the distortion attributes and it doesn't do anything. So my movie appears 16:9 for the 1st 6 mins, and then 4:3 for the rest. Why is that?
    thanks for your time and input.
    kchen

    FCP doesn't know that your reimported clips are Anamorphic 16:9 ... its just reading them as 4:3 because thats what the actual frame size is. Switch your Browser to list view, then scroll the columns to the right until you see the "Anamorphic" column. Now click in that column for each of these reimported clips so that there's a tick against each one.
    Now drop them into your 16:9 timeline and you'll be fine.

  • Exporting uncompressed video

    Hi iv been invited to screen one of my films at a festival, the people dealing with showing the videos are being very un helpfull with video type and codecs etc, so they basicly just said give us something we can convert easy, hearing that i panicked imagining that there just going to take my HD video and mess it upby re- compressing everything. my freind (a fcp user) told me to render off a self contained video so that they can just easily render off wahtever they want, i have found out that this an option esclusive to fcp. so basicly i was wondering what would be my best option ? and if there is a noption similar to a self contained video inside premire pro cs5?

    "self-contained video".
    Its a Quicktime term Jim. 
    No festival will play an uncompressd file and then there is the difficulty of how does one deliver such a thing.
    Apart from getting hold of the specs (that any reputable festival would provide as matter of course)...H264 with high bitrate will do the job fine. I ts kind of universal and mangeable.

  • Import Export command

    Hi
    I just finished a sketch of my project and I'm about to build it in siena. I'll be able to build almost everything with this version of siena. However one important feature is still missing and before I start to build it I would like to know if you planning
    to implement the feature into siena or no.
    I need a command for importing and exporting data or ability to chose a location for saving and loading data. I need to share app data with other users on company network and I don't want the data to be save on device. I can't use a internet so the
    only way is local network
    Please answer this. It's very important. I don't want to start something what I can't finish
    Thanks

    Hi thorwn
    In today version:
    You can save load data but only somewhere in your device so the saved data can not be shared with other device
    You can import export data even multiple data but only by pressing import export button so an importing or exporting can not be done without user intervention.
    I need to save or export data each time I collect or update collection into already predefined location
    so the data can be shared between multiple devices
    without user intervention.
    For example: I have two users in one company with two devices. First user collect a collection in the app and automatically save it on a network. Second user open the app and he will see the change what first user did.
    (Once again I can't use internet connection)
    The solution: In collect button
    OnSelect: Collect(collection: ID:1, Name:"XYZ"); Export(collection, "C:\Shared\Appdata\collection")
    In screen with collection
    OnScreenLoad: Import(collection,"C:\Shared\Appdata\collection")
    The location for saving and loading can be saved and modified on device. Import(collection, savedLoacation)

  • Export uncompressed FullHD video. Premiere CS6

    Hello.
    I have a problem, and I want to ask you for some advices.
    Actually I have an Intel Q9550 CPU on which I edit my videos. I didn't have problems with Full HD untill I started to work with AVCHD Format.
    The problem consist in Exporting time (it takes very long ~ 7 Hours to generate a 90 minutes movie with VBR 1 Pass + Render At Maximum Dept + Use maximum Render Quality, 1920x1080 25p).
    I have a colleague which has an Intel i7 3770K, which does the same process in less than 1 hour.
    I'm curios, is it possible to export from my Q9550 PC an uncompressed video. After that to Import this video on i7 3770K PC and compress it into MPEG2-Bluray and MPEG2-DVD. ?
    BTW:
    Actually I cannot change my PC because i have no budget allocated for it.
    Also, please exclude the advice to copy all footages to i7 3770K computer, and the project and to export on it.
    Any advice will be welcome.

    Firstly, you are greatly increasing the render times by checking both Max Depth and Max Quality. Max Depth is typically not needed or used. As for Max Quality, that is said to only help when SCALING is involved, so that would not help when going from HD source to Blu-ray, would only be used when exporting to DVD since you are downscaling the source video. So keeping those rules in mind could save substantial time right there.
    But if you do want to export and have your friend encode for you, you don't want "Uncompressed HD" files, those would be absolutely gigantic files and would really strain ANY system when trying to play them (requires special hard drive RAID arrays). Try the free Lagarith .avi codec that can be downloaded (your friend will need it as well to use the files). http://lags.leetcode.net/codec.html Has uncompressed quality, without the uncompressed file size, though the files will still be quite large compared to AVCHD. Your 90 minute program could easily be well over 100GB. A more compact format with good quality is the Matrox MPEG-2 I-Frame 4:2:2 codec, at 100mbps, so about 4x larger than AVCHD files, available here - http://www.matrox.com/video/en/support/windows/vfw_software_codecs/downloads/softwares/ver sion1.0/build33/
    Part of your render time issue could also be due to effects you have applied in the video. Those will of course need to render whether exporting to Blu-ray, DVD, or "just an .avi file". So in that case, it may take just as long to export to Lagarith as other formats, so you may not save any time anyway.
    What is your hard disk setup? That could be a bottleneck that limits export speeds as well, if reading from and writing to SAME drive, if it's not fast enough.
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • Lightroom CC issues with multiple export at the same time

    Back before Lightroom updated to the CC version, I was able to use export presets to send 4 different versions of the photos I'm working on at the same time (A Full Size for client at certain size, full size for myself, web-sized with watermark and a thumbnail). Since updating to the CC version, I'm only able to start the export process on two of these versions before the system simply becomes crippled and I cannot even navigate through Lightroom without it chugging along.
    For reference, I'm running a 2014 rMBP with 16GB of RAM, LR is the only app open at the time and it's showing that I have roughly 6GB of RAM free when attempting this export.
    TL;DR: LR5 worked wiht multiple exports at the same time, but LRCC now chugs after 2 exports are started

    Re: "Selecting video in Messages, now starts Face time for video. Face time is one to one only."
    Apple "Messages" supports two different types of video conferencing. It's become more than a little confusing. If you (or the person on the other end) ONLY have accounts set up for Apple's "iMessage" service (associated with your Apple ID and "iCloud") you may see the video symbol, but when you click on it you will be connected via FaceTime which is limited a 1-to-1 video conference.
    However, if you have set up an AIM account in Messages (you may already have an AIM account ID if you once used iChat for video, audio and screensharing) and the person at the other end also has an AIM account you will be connected via AIM and will be able to do screen sharing and multi-person video conferences just like the old iChat, i.e. you'll have iChat Theater features, up to 4-way conferencing, etc.
    It can get very confusing if, for example, you've signed up for AIM using a .me or .cloud email address. But once you have it set up and learn to recognise the way Messages switches between AIM and iMessage all the old iChat features work just fine in Messages.

  • 25 Sony 8mm old Home videos importing as ntsc best import/export settings

    I have 25 Sony 8mm old Home videos some over 20 years old importing as ntsc with a brand new mac-book pro and FCE 4.0. What is the best import and export settings to save for the future. Quality is important and time and space is not that important but I don't want to get silly considering the quality I am importing.
    Thanks for your time.

    I have 25 Sony 8mm old Home videos some over 20 years old importing as ntsc with a brand new mac-book pro and FCE 4.0. What is the best import and export settings to save for the future. Quality is important and time and space is not that important but I don't want to get silly considering the quality I am importing.
    Thanks for your time.
    *((((You will need to convert the analog video to QuickTime using Apple DV-DVCPRO NTSC codec. The normal way to do this is with an analog-digital converter such as the Canopus ADVC-110 or ADVC-300 (not the ADVC-mini). However, if you have a miniDV camcorder that supports analog-digital passthrough then you could use the camcorder as the converter device.)))))*
    I was lucky and found a sony camera that I hooked a four pin firewire to a 9 pin (800) to my mac.
    *(((Keep in mind that DV video requires about 13GB per hour. If your 8mm tapes are all 120 mins (2 hours) long, you will need about 650GB to store all the captured video. Sounds like a 1TB drive to me. BTW - Firewire, not USB.)))*
    I was thinking 2TB
    *(((You need to capture the video in FCE. The proper easy setup is the DV NTSC DV Converter easy setup. Editing will then be done in a DV NTSC sequence.*
    *How you export from FCE depends on what you want to do with the finished video. If you just want to burn DVDs, then export to QuickTime Movie. If you want to save the video at its 'full resolution' then also export as a QuickTime Movie. If you want to post to the web, or do certain other things with the finished video, you would export to QuickTime Conversion.))))*
    I just want to store it on 2 hard drives one connected to a pogo plug so my family can see them and store the second at my brothers house as the back-up. What would be the best format for that?
    Now you know my hardware so should I import the whole 2 hours or batches of like 1/2 hour segments.
    Again thanks for your help this is saving me many trials and errors.

  • Exporting Large videos as image sequences using Quick Time Convert

    I am trying to export some fairly long videos as image sequences >10000 frames with Final Cut Pro using the quick time conversion tool.
    I am working with SD and HD videos.
    While some sequences export without error (both SD & HD) occasionally an "error" occurs which results in the 10000th frame (and in one case the 1000th frame) not being written. The File is opened as "MyVideoName#FFFFFFF.png" but no data is written to it. (Obviously it should be MyVideoName10000.png)
    There is 500Gb of free space on the disk I am writing to.
    At the moment I can't even work out why it fails in some instances - apart from the fact it seems to be related to the file name.
    I would appreciate any help any one can offer!
    Thanks,
    John
    G5   Mac OS X (10.3.8)   FCP HD 4.5; QT 6.5

    Thanks for your reply!
    So far I've not managed to come up with a workable solution.
    Exporting as an image sequence is infact a work around... I originally was planning to export the videos as uncompressed .avi files but (as documented elsewhere) this does not work for videos >10Gb.
    Some videos have exported fine both those longer and shorter than 10000 frames. However, for some videos only the first 9999 frames are exported. As a workaround I was planning to export the remainder of the videos seperately (as a subclip) but this only managed to export the first 999 frames (the 1000th file opened is called MyVideoName#FFFFFFFF, but no data is written to it).
    At the moment I can't find any explanation for the cause of this problem. Are there any logs or any way to get more detailed error information?
    Thanks again for your help,
    John

  • How do I export my video uncompressed?

    how do I export my video uncompressed?

    Thanks so much. I have been watching the tutorials, but it's hard to find the right one for the right topic.
    I am definitely on a steep and frustrating learning curve. I try to learn as much as I can given my time constraints (grad student and teacher) and time pressures (wanted to release video in the spring). The vidoes are helpful mostly and I have come a long way from a few weeks ago.
    "...work on the same system..."  (I'm not used to the lingo). Do you mean Premiere Pro? Yes, he does have access to one. We are trying to find the best way to send it to him to final edit. I understand that I could send him all of my original video files and an edl, yet that will take some large amounts of cloud storage.
    "Exporting it would be limiting": I'm not sure what you're saying. Do you recommend not exporting it?

  • Problem Exporting a Video Originally Imported using F4V Format

    the last version of flash i used with Macromedia Flash MX. Now i'm using Flash CS6, in fact this is my first time using it and i've been trying to get this task done for just over 12 hours now but i can't seem to figure it out....
    I have 3 videos that i split up into 3 scenes using windows live movie maker
    then i used media encoder to convert all the cenes to F4V
    From there, i imported the first Scene of each video into individual layers in Flash CS6 used the "Load external video with playback Component Method
    The reason why i use that method was because when i use the other method with the video in FLV format the video and audio was out of sync when i exported/test scene
    with the load external video method it works perfect in test scene... pretty much the way i want it to, however when i export the video it doesn't even play my best guess is that's because each video is only on one keyframe. and needs to be converted and action added.
    am i right? where do i go from here? how can i export these scenes... what am i missing?

    these are the supported youtube formats:
    .MOV
    .MPEG4
    .AVI
    .WMV
    .MPEGPS
    .FLV
    3GPP
    WebM
    and, of those, only mov and avi can be exported from flash pro.  those exports are usually unsatisfactory because flash pro is not a video editing program.  ie, you are using the wrong tool for the job. 
    check adobe premiere.

Maybe you are looking for

  • SAP XI not able to split message in BPM

    Hello All, In our XI production system Message information is coming into the XI from CCS but XI BPM is not splitting the message to the external system . this is happening to one perticular interface. Message execution status is showing as successfu

  • Search Criteria: how to filter dropdown lists?

    Hello Experts! In my 'Search Criteria' page of Complaints I have some fields such as Transaction ID, Transaction Type, Created By, Partner Function, etc. 'Partner Function' is bringing ALL partner functions of the system in the dropdown list. I need

  • Which is better for mbp 15" -- the 6X8 or 6X11 wacom intuos tablet???

    hey guys i have a 15 inch mac book pro im planning on getting a wacom intuos tablet which would be best for it and for the screen proportions -- the 6X8 or 6X11?? thankyou

  • Webcam for ichat or Skype?

    Hi, could anyone give me any advice on a good webcam to use with iChat or Skype? Thanks, John

  • Creating custom mappings between objects

    I currently have a db schmea that supports "soft" deletes. Example: Client table has fields: id - primary key (number) name - varchar active ("Y" or "N" where "Y" means active and "N" means "INACTIVE") We also have a table Users: id - primary key (nu