What is the proper Codec to use in FCP 7 with T3i footage?

I have a question regarding Codecs to use in FCP 7.
My footage comes from a Canon T3i or a Canon 5d.
I always encode/transcode my footage in Compressor before editing in FCP.
I have been using ProRes 422 but doing some quick reading on Apple Documents ... I'm thinking that ProRes 422 might not be the highest quality possible.
I want to have the BEST looking footage I can.
Can someone help with which Compressor Codec I should be encoding to?
thank you

ProRes 422 is fine. Yes, there are higher end ProRes codecs...HQ and 4444. But they won't garner any better results.  Your footage won't look any better if transcoded to ProREs HQ or 4444.  The biggest compression has already been done...when you shot and recorded as H.264.  Going to a higher ProRes format won't make it look any better than ProRes 422.
Saying that, lots of people shoot with the Canon DSLRs to H.264, and it all looks fine. I'm just saying that nothing will improve on the quality...higher ProRes won't make it better. 
There...I've said that a good half dozen times now....hee hee.
Those formats...the higher end ones...are meant for higher end camera formats...ALEXA, RED, F5...the BIG guns.

Similar Messages

  • What is the proper way to use Siri dictation with punctuation, on iPad with Retina Display?

    What is the proper way to use Siri dictation with punctuation, on iPad with Retina Display?
    Thank you!

    From the iPad User Manual:
    Also:
    no space on ... no space off—to run a series of words together
    smiley—to insert :-)
    frowny—to insert :-(
    winky—to insert ;-)

  • What is the proper way to use the write method?

    What is the proper way to use the OutputStreams write method? I know the flush() method is automatically called after the write but i cant seem to get any output
    to a file. The char array contains characters and upon completion of the for loop the contents of the array is printed out, so there is actually data in the array. But write dosnt seem to do squat no matter what i seem to do. Any suggestions?
    import java.io.*;
    public class X{
    public static void main(String[] args){
    try{      
    FileReader fis = new FileReader("C:\\Java\\Test.txt"); //read chars
    FileWriter fw = new FileWriter("C:\\Java\\Test1.txt"); //read chars
    File f = new File("C:\\Java\\Test.txt");
    char[] charsRead = new char[(int)f.length()];
    while(true){
    int i = fis.read(charsRead);
    if(i == -1) break;
    // fw.write(charsRead); this wont work
    // but there is infact chars in the char Array?
    for(int i = 0; i < charsRead.length -1 ; ++i){
    System.out.print(charRead);
    }catch(Exception e){System.err.println(e);}

    Sorry to have to tell you this guys but all of the above are broken.
    First of all... you should all take a good look at what the read() method actually does.
    http://java.sun.com/j2se/1.3/docs/api/java/io/InputStream.html#read(byte[], int, int)
    Pay special attension to this paragraph:
    Reads up to len[i] bytes of data from the input stream into an array of bytes. An attempt is made to read as many as len[i] bytes, but a smaller number may be read, possibly zero. The number of bytes actually read is returned as an integer.
    In other words... when you use read() and you request say 1024 bytes, you are not guaranteed to get that many bytes. You may get less. You may even get none at all.
    Supposing you want to read length bytes from a stream into a byte array, here is how you do it.int bytesRead = 0;
    int readLast = 0;
    byte[] array = new byte[length];
    while(readLast != -1 && bytesRead < length){
      readLast = inputStream.read(array, bytesRead, length - bytesRead);
      if(readLast != -1){
        bytesRead += readLast;
    }And then the matter of write()...
    http://java.sun.com/j2se/1.3/docs/api/java/io/OutputStream.html#write(byte[])
    write(byte[] b) will always attempt to write b.length bytes, no matter how many bytes you actually filled it with. All you C/C++ converts... forget all about null terminated arrays. That doesn't exist here. Even if you only read 2 bytes into a 1024 byte array, write() will output 1024 bytes if you pass that array to it.
    You need to keep track of how many bytes you actually filled the array with and if that number is less than the size of the array you'll need pass this as an argument.
    I'll make another post about this... once and for all.
    /Michael

  • HT1229 what is the best method for using a iphoto with an external hard drive for greater capacity?

    what is the best method for using a iphoto with an external hard drive for greater capacity?

    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • What is the best codec to use when importing video into Premiere?

    I have recently aquired Premiere cs6 and want to use the best possible format to edit with. I am going to use footage that I film with a DSLR (5D mark III) so I know the codec will be H.264. My question is: Is H.264 the best codec to use? Or, is there a better codec that Premiere likes to use?
    Thanks!

    >recently aquired Premiere cs6
    Please NOTE that the PPro CS6 screen may look a bit different (I use CS5)
    For CS5 and later, the easy way to insure that your video and your project match
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/thread/872666
    -and a FAQ on sequence setting http://forums.adobe.com/message/3804341
    And, A tutorial list in message #3 http://forums.adobe.com/message/2276578

  • What's the proper way to use reusingView in a custom UIPickerView

    Does anyone have an example of the proper way to use the resuingView parameter when implementing pickerView:viewForRow:forComponent:reusingView: in a UIPickerViewDelegate?
    The documentation states that reusingView is "A view object that was previously used for this row, but is now hidden and cached by the picker view."
    and: "If the previously used view (the view parameter) is adequate, return that. If you return a different view, the previously used view is released. The picker view centers the returned view in the rectangle for row."
    I need to create UILabel views so I can right justify things, and I have that working by always returning my copy of the view, but it seems like things could be made more efficient by returning the view passed to me if it's "adequate". So, how do I tell if the view is adequate?
    I've tried something like this:
    // check to see if the view we're given is a UILabel and return that view
    if ([view isMemberOfClass:[UILabel class]])
    v = (UILabel *)view;
    return v;
    else
    ... return a UILabel instance for this row ...
    But the view I'm being passed is never a UILabel instance. That or I'm not using isMemberOfClass correctly.
    Thoughts anyone?

    - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
    iPregnancyAppDelegate *iPregAppDelegate = [[UIApplication sharedApplication] delegate];
    UILabel *pickerLabel = (UILabel *)view;
    // Reuse the label if possible, otherwise create and configure a new one
    if ((pickerLabel == nil) || ([pickerLabel class] != [UILabel class])) { //newlabel
    CGRect frame = CGRectMake(0.0, 0.0, 270, 32.0);
    pickerLabel = [[[UILabel alloc] initWithFrame:frame] autorelease];
    pickerLabel.textAlignment = UITextAlignmentLeft;
    pickerLabel.backgroundColor = [UIColor clearColor];
    pickerLabel.text = @"Put YOUR text here!";
    return pickerLabel;
    Message was edited by: gpmoore

  • What is the proper resolution to use with bootcamp and Windows 7 on a Macbook Pro Retina?

    Hi All,
    Let me start by saying I have read numerous articles and blog posts about choosing the correct resolution to use when running Windows 7 via Bootcamp on a MacBook Pro Retina (15").  I have not found the "silver bullet" (correct resolution).  My eyes are sensitive to displays that are running in non-native resolutions (scaling). 
    When running the display in native resolution  (2880x1800) everything looks great, except that icons and text are way too small to read.  I have played with the zoom settings (150%, etc.).
    When using any scaled resolutions, the display doesn't look as crisp and I get eye fatigue.  I have also tried Windows 8, with the same results (no surprise).
    I would love to use this Macbook to run Windows 7 because the hardware is great, but it looks like I may have to switch back to Dell/Lenovo/HP. 
    Is there a proper or "best practice" resolution to run at in this scenario?  I want to give it one last try before putting the laptop away...
    Thanks for any help!
    Andrew

    While I've never seen retina display, if you have not tried Hi-Contrast in Windows, you might find settings with it that are comforatable.
    This is set with desktop rightclick->Personalize. You can vary desktop icon size in the View option above Personalize.
    You can change most of what you see in Windows foreground/background colours & text with high contrast settings.
    Also, text size in Windows browsers is variable with the Control an + and - key combo.
    If the display you use is small maybe an external 24" or 27" monitor, if possible, would alleviate problem.
    The attached pics are expadable by double click.

  • What are the proper settings to use for Quadro 2100M on WS60 workstation

    Hello,
    I have a WS60 Workstation.  When going through the settings for physix and others I noticed that the Nvidia card has no ports assigned to it.
    How do I ensure that the laptop is indeed using the quadro card?
    Thanks

    For the Optimus structure, NVIDIA graphics is doing the rendering but it's Intel Graphics which is showing the rendered graphics on the screen. This is why you didn't see NVIDIA Graphics is connecting with any displays.
    You can check the power button light, it will light orange when the dedicated graphics is in used.
    (White color shows it's using the integrated graphics)

  • What is the best way to use EJB modules with JAX-WS?

    Hi.
    I am doing a project that returns EAN13 encoded data to external java clients.
    I think I need to use a webservice that send response, a webservice client that send the request, and other project that transforms a data to an EAN encoded data, returns it and store it in MySql database.
    It is possible that I need to authenticate users for every request made.
    -I have created a EJB module contained into Glassfish for the webservice
    -I have created a Common Java project with 3 layers: Entities, bussines and data access layer for mysql database
    -I have a project for the webservice client with JAX-WS ( is the best choice? or Would be better JAX-RPC? )
    **How would you suggest me create the structure of the project with all the java power?*
    **Could you help me with goods tutorial of design patterns about webservices using EJB and the best way for use databases for this kind of projects ( I have heard about JNDI, Hibernate, Session EJB, ... )?*
    **Would be better use other EJB module instead of a Common java project that has classes?*
    h3. {color:#333399}I shall be pleased with your help{color}

    Kappy is dead on correct about Bridge Mode as a requirement for the Time Capsule.
    Do you know how to check to see if the Time Capsule is configured this way?
    Next question.....you really should not try to have two wireless networks....one Arris and another Time Capsule.....unless it is absolutely necessary. Two wireless routers in close proximity can create wireless interference effects that can cause problems with either...or both...networks.
    Best to turn off the wireless on one router to keep the chances of wireless interference between routers minimized.
    Are both the Arris and Time Capsule providing wireless signals?

  • Whats the best codec to use when working with JPEG's

    Hey all, I'm working on project that are scanned JPEGS @ 2K resolution. What codec would you recommend for the best resolution ? I've tried the Photo-JPEG codec, yet I still get render bar ?
    The Photo-JPEG sequence setting, which is to my knowledge, just the same as the JPEG Pics, why does it still ask for me to render (RED OVERHEAD LINE) ? If the sequence is the same as the media, it shouldn't need to be rendered ... correct ?
    Any help appreciated

    If you are planning on doing any work on individual images, you will want them in a non-lossy format. JPEGS are recompressed every time you open the image and work on it.
    However, if you are going to use the images straight from the cam without editing in Photoshop or the like, JPEGs can be ok. Just convert the image sequence to video before you import the material into FCP as still images take enormous resources within FCP.
    I use Quicktime Pro to convert image sequences to a video file. It is much more efficient at it than FCP.
    x

  • What is the best codec to use to get optimum video quality?

    I need to get my FCE2 project on to DVD, garnering the very best video quality/ clarity the software can muster. What do I use?

    As you can read in a similar thread, the best way to my knowledge is simply to:
    - export to QuickTime Movie (not to QuickTime Conversion) from FCE HD: this will not change the quality of the movie (no compression involved)
    - use any authoring DVD program: I use iDVD and it is more than enough for me: this will encode the movie to MPEG2.
    The results are very good at least for non professional use. Otherwise you have to have DVD Studio Pro.
    Piero

  • What is the proper account to use for icloud?

    Do i use my apple id, or my mobileme account? i tried the apple id first and contacts wouldnt sync to icloud from the phone.then i tried my mobile me account info and everything synced. which are we supposed to use?
    mobileme account works fine between devices and pc, but wouldnt this stop icloud from accessing my itunes stuff since im not using my apple id?

    Sorry to have to tell you this guys but all of the above are broken.
    First of all... you should all take a good look at what the read() method actually does.
    http://java.sun.com/j2se/1.3/docs/api/java/io/InputStream.html#read(byte[], int, int)
    Pay special attension to this paragraph:
    Reads up to len[i] bytes of data from the input stream into an array of bytes. An attempt is made to read as many as len[i] bytes, but a smaller number may be read, possibly zero. The number of bytes actually read is returned as an integer.
    In other words... when you use read() and you request say 1024 bytes, you are not guaranteed to get that many bytes. You may get less. You may even get none at all.
    Supposing you want to read length bytes from a stream into a byte array, here is how you do it.int bytesRead = 0;
    int readLast = 0;
    byte[] array = new byte[length];
    while(readLast != -1 && bytesRead < length){
      readLast = inputStream.read(array, bytesRead, length - bytesRead);
      if(readLast != -1){
        bytesRead += readLast;
    }And then the matter of write()...
    http://java.sun.com/j2se/1.3/docs/api/java/io/OutputStream.html#write(byte[])
    write(byte[] b) will always attempt to write b.length bytes, no matter how many bytes you actually filled it with. All you C/C++ converts... forget all about null terminated arrays. That doesn't exist here. Even if you only read 2 bytes into a 1024 byte array, write() will output 1024 bytes if you pass that array to it.
    You need to keep track of how many bytes you actually filled the array with and if that number is less than the size of the array you'll need pass this as an argument.
    I'll make another post about this... once and for all.
    /Michael

  • HT2204 What is the best way to use iTunes Match with two Apple ID's that have purchased content?

    Hello. 
    In my early years of using iOS devices i have unwittingly made the mistake of creating a second Apple ID for my second device.  So now i have two Apple ID's with purchased content associated with them. 
    I have turned on iTunes Match with the account that has the bulk of my music linked to it.  But my second account has maybe 150-200 songs (and lots of apps) that i really like and don't want to loose.  Activating iTunes Match for the main account wiped these 150-200 songs off my iOS devices and replace them.  Is it possible to have content from both my apple id's on my devices at the same time?  Is it possible to combine the content from both of my accounts?

    I'll try to help a bit.
    ITunes match space is different to icloud space. With iTunes match you get storage for 25,000 non iTunes purchased tracks and other than a limit for individual file size, there is no memory limit.
    You can turn match on individuallyon each device (I have it turned off on my iPod but turned on on my iPad and iPhone). When you turn it on then you get access to all the tracks, and in my experience any playlists I create have transferred over very well. I understand that some people have had trouble with playlists though.
    I'm not quite clear with exactly what you mean regarding cleaning up your library, but be careful about using Match for this. There is no guarantee that matched songs will be exactly the same version as your own copy, due to some mismatches, so you could find some problems there. Personall, I am cleaning up my library before matching, but I am rather particular about keeping my library the way I want it. If you aren't as fussed then match could be the answer.
    Hope that helped.

  • What's the best way to use iTunes match with 4 iPhones and an ipad2

    Currently have iPhone 4 (2), iPhone 3GS, iPhone 3G (used as touch-no sim), and iPad 2.  We use one apple id to purchase with. We use a windows 7 pc and iTunes 10.5.....latest ver.  My questions are  kinda multi faceted, but I'm thinking iTunes match can help.  Ok....
    Is iTunes match cloud space the same as iCloud space? 
    I have ~15000 mp3's.  I'd like to use iTunes match to "clean up" my library.  So, once I get my matched tunes up there will all my devices see that library?
    What about playlists?  Do they just stay the same and locally reside on iDevices?
    I don't have a Mac yet, well I don't have a new one.  I currently have a iBook g4 1.0 ghz with 1.25mb ram and osx 10.5 on it.  I would like to move all my music to a 1tb nas drive that I have.....iTunes does see it.  Then do all my iTuning from that machine for the next couple of months until I save more money and by an iMac. 
    However, it seems as though this ITunes might be able to this better.......
    I'm terribly confused...I have 10+ years in IT, albeit mostly all PC.  That being said, I am ready to switch, I just feel like I'm so deep into a mess it seems impossible to do any of this cleanly.
    Thank you,

    I'll try to help a bit.
    ITunes match space is different to icloud space. With iTunes match you get storage for 25,000 non iTunes purchased tracks and other than a limit for individual file size, there is no memory limit.
    You can turn match on individuallyon each device (I have it turned off on my iPod but turned on on my iPad and iPhone). When you turn it on then you get access to all the tracks, and in my experience any playlists I create have transferred over very well. I understand that some people have had trouble with playlists though.
    I'm not quite clear with exactly what you mean regarding cleaning up your library, but be careful about using Match for this. There is no guarantee that matched songs will be exactly the same version as your own copy, due to some mismatches, so you could find some problems there. Personall, I am cleaning up my library before matching, but I am rather particular about keeping my library the way I want it. If you aren't as fussed then match could be the answer.
    Hope that helped.

  • What is the proper method for creating a document with double spacing?

    There was a questioned posed regarding double spacing documents and it was suggested to set the leading to twice that of the font size.  Is this how "double spacing" is defined?

    Double-spacing is a concept traditionally used in word processing. In professional page layout, as you would use it in InDesign, the space between lines is called "leading" and refers to finer increments than word processing (Word's Single, 1.5 lines, Double, etc.) It is measured in units called "points." There are 12 points in an inch.
    In most professionally laid out publications, body copy of average column width is set with 1 to 4 points of space beyond the point size of the type. If the type size were 11 point, the leading might be set as between 12 and 15 points, depending on how much space you desired between lines.
    Why don't you tell us what is you're trying to accomplish, and perhaps attach a screen capture of what you're trying to do?

Maybe you are looking for

  • Internal server error http 500, open document

    I have a webintelligence cluster installation. IIS6.5 sp3W2003 sp1 When I open a report, I have an internal server error http error 500. In the log I see something like : "The specified module could not be found".  But I don't now which module it is.

  • ESS Expense Claims in Portal

    Hi guys, Need your expert advice here. Stuck trying to troubleshoot this particular error. It's only apparent to 1 particular user whereby when he try to submit expense trhough the portal, he'll get a portal runtime error. I have tried performing the

  • Icloud calendar wrong date

    On my laptop, when I log into icloud the calendar icon shows a hybrid date, stuck between today and tomorrow.  When I click on the icon, the calendar (which is in month view) does show "today" as the correct day, burt the page never stops loading unl

  • Facing problem in hierarichal alv

    Hi , I had formed Hierarichal alv, but getting a problem. when item body is empty its not even printing header. whole data is passing till header internal table but when it find item body empty , it shows that  'list contain no data.' plz do help me 

  • Mighty Mouse/Mice "Freezes" On Windows 7 w/ iMac... Solutions?

    Hi. I'm running Windows 7 Home Premium 32-bit on a Mac OSX 10.7 using Bootcamp 3.0. I'm using an iMac 21.5" Late 2009 model. There seems to be some connectivity issues with Mighty Mouse's Bluetooth and Windows 7. As I tend to move the mouse, it begin