How can i change the format of output captured footage using DSR-11 in Premiere Pro CS5.5?

Hi.
I am using Premiere Pro CS5.5, capturing footage off a mini-DV casette (NOT HD) using a Sony DSR-11. All is well with that, except for that the output is an .avi rather than MP4 (H264). I am under the impression that H264 with the extension of .MP4, is better than avi.
Does anyone know if it is possible to change the format of that outputted footage?
thanks:)

thanks Ann, Jim. I was afraid u'd say avi is the only option w/capturing, but am happy to hear it is the best option. Thanks again, and to the others who replied (and i will look at the "best export format/codec" page:)

Similar Messages

  • How can I change the formate of @today from (MM/dd/yyy) to (dd-MM-yyyy)?

    I am in openscript, using a settext commend - .setText("{{@today(MM/dd/yyyy), 10-02-2011}}}}"); is anyone know how can I change the formate of @today from (MM/dd/yyy) to (dd-MM-yyyy)?
    I went to Java Code tab and tried to use - new SimpleDataFormat("dd-MM-yyyy").format(new Date()); but not successful. Any help will be appreciated.
    Katherine

    Hi,
    you can display the date format in dd-mm-yy by using the below Java code.
    First import the bellow java classes.
    import java.util.Date;
    import java.text.SimpleDateFormat;
    //and add bellow code in run() function
         //************ Display Date and Time *************
         Date date_format=new Date();
         SimpleDateFormat dateFormat = new SimpleDateFormat("dd-mm-yyyy");// HH:mm:ss");
         String Exec_Time = dateFormat.format(date_format);
    //output statement
    info("Today's Date: "+Exec_Time);
    I can able to add the screenshot of this output here, so if you need any other information please write to me.
    Regards,
    MRSN

  • How can I change the format of some of the pages of a PDF-document?

    I use Adobe Acrobat and have a PDF-document with A4 pages and some pages of another format (half of an A4).
    How can I change the format of these pages to A4 (with a lower blanc part)?

    You can increase the page size with the Crop Tool of Acrobat Pro.

  • My mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    my mac disk is full and i cant transfer files from Mac to USB. saying the format is not good, how can i change the format and what happened to the files i have on USB?

    Once something similar happened to me. The external drives I had set up for FCP to use for some reason were not mounted, and FCP put all its render files on the main drive and I couldn't find them anywhere.
    Go to applications, and control-click (and hold down) on your FCP icon; you should get a pop up menu that says "show package contents". Select that, select the "contents" folder, then the "mac OS" folder. See if your quicktime file is in there, or if you've got render files in the "render" folder or audio render files in the "audio render" folder that don't belong there.
    That's where FCP sticks stuff when your documents FCP project folders are not available or when external drives you've selected aren't available.

  • I have used the resume tablet and put my resume into format but when emailing it, it will not open on windows. How can I change the format to where they will be able to open and view it?

    I have used the resume tablet and put my resume into format but when emailing it, it will not open on windows. How can I change the format to where they will be able to open and view it?

    I guess you mean one of the resume templates.
    What "format" have you saved your finished resume in?
    The only formats a Windows user will be able to open are .doc (Word), .pdf and rtf. The 1st 2 are usually the best.
    There is no Windows version of Pages.
    Peter

  • How can I change the window size of iTunes?  Used to be easy before installing Mavericks.

    How can I change the window size of iTunes on my iMac?  Used to be easy before installing Mavericks.

    If you want to make the itunes tab so you can see the dock
    you press the
    esc
    button if your in full screen mode
    if you want to get into full screen mode you press the arrows facing away from eachother in the top right corner
    there is another way to get to the normal tab if your in full screen
    make the curser go right up to the top of the screen and it will show the apple tab
    it will have two arrows facing together highlited in blue
    if u tap that it will take you to the normal tab

  • I just buy new Macbook pro retina. How can I change the language from USA to Chinese., I just buy new Macbook pro retina. How can I change the language from USA to Chinese.

    anybody can help?
    How can I change the language from USA to Chinese? I already select in setup.

    If it didn't take for some reason, go to System Preferences… and select the Languages & Text preference pane and reorder the languages accordingly.
    Note however that specifying a language may not necessarily change everything about a system to being in that language.

  • How can I change the format of the default new document?

    Hi, I've recently upgraded to Pages 5.1 and am wondering how I can change the formatting of the default 'new document' template. Any suggestions would be most welcome,

    Make a template to your own liking and Save As Template…
    Menu > Pages > Preferences > For New Documents: Use template > Change template > Choose
    Peter

  • How can i change the Format of my DATE column?

    I need to change the date format for a whole column. At present i can do MM-DD-YYYY. I need to change this this to DD-MMM-YYYY.
    I know about the to_date function, i tried to apply it to change the format of my whole column by doing the following.....
    CREATE TABLE "IT220_DATEHOLIDAY"
    "DEPARTID" VarChar(2)NOT NULL ENABLE,
    "HOLCODE" VARCHAR2(2)NOT NULL ENABLE,
    "DEPARDATE" DATE,
    to_date('DATE','DD-MMM-YYYY'), <<<change DATE column to DD-MMM-YYYY
    CONSTRAINT "DATEHOLIDAY_PK" PRIMARY KEY ("DEPARTID") ENABLE
    ORA-00902: invalid datatype <<<<This was the error message i received.
    I am aware that the to_date function is supposed to be used to change strings into a certain format. I guess this means you cant do it with columns? Is there anyway i can format the whole column or do i have to do each string of data entered one by one?
    Thanks in advance!

    Hello Jay,
    I'm not sure you hit the right forum, as this doesn't seem to be a problem with APEX.
    Anyway:
    You can't use that function on a table like that, and as you already suggested, the to_date-function expects a string value.
    It seems you also have a misunderstanding of the basic datatypes in the database. DATE is such a datatype and is stored an internal format you don't need to care about. Each time your request the value, the database will give you a string representation according to either your locale or you give a certain formatting mask.
    The same applies to insert or update operations: you hand in either a variable of type DATE or use a function like to_date to create an "object" of type date.
    You may be interested in reading the documentation of the [url http://download.oracle.com/docs/cd/E11882_01/server.112/e16508/toc.htm]Oracle Database Concepts. The section concerning datatype DATE can be found here:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e16508/tablecls.htm#CBBGJHJC
    An overview of formatting options can be found here:
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17118/sql_elements004.htm#SQLRF00212
    So to answer your question: You would format it as part of your insert operation, taking a string and convert it using to_date.
    -Udo

  • How can I change the format of numbers in Oracle SQL Developer 1.0 ?

    The value 1.4345 from a table is represented in Oracle SQL Developer 1.0 like 1.5
    How can I change this to see all the digits ?
    Thanks

    Where did you see that, in the SQL Worksheet or viewing the data Connections ->.. tables ->.. tree?
    What datatype, precision and column name you have?
    I use version 1.0.0.15.57 and seems to be working allright.
    - Babu Rangasamy

  • How can I change the background color in text box using RGB format

    Can some one tell me if Mac Pages (version 5.0) allows users to customize the background color of a text box using RGB color format?  It appears that the text color can be changed using RGB but background color is limited to a few standard colors.   Thanks

    They are just sample swatches, use the Color Picker to choose anything you want.
    Peter

  • How can I change the format of text pasted into a Mail email from another document?

    I paste some text from a word document into an email in Mail.  In the word document, the text was indented .5" from the right margin.  In the Mail email document, the text also appears indented .5" from the right margin.
    But since this was the last text in the email I am composing, my text following the pasted-in part continues at the indented "style" of the pasted in text.  And thre are no controls for changing this indentation on subsequent text in that email, nor can you chage the indentation formatting of the text pasted in.
    Even when you select "decrease indentation" under the format/indentation options in the menu bar, Mail will not reduce a "pasted-in" paragraph indentation nor will it return a subsequent text paragraph you type in manually back to a left-adjusted margin.
    Am I miising something?
    Is there a way to see something in each Mail message composition window akin to what you see in a word processing document that allows you to set margins and indentations and tabs for individual paragraphs?  Just like the Formatting controls you have here in the Apple Support communities when you ar composing a message and that I used to indent this paragraph?
    And then used to return this paragraph back to the original left adjusted formatting?
    Steve

    Thanks for the reminder.  I use the formatting toolbar but forgot to go there instead of the Format menubar item for Mail to try the indent and outdent commands.
    But, alas, that indent, outdent option has no impact on text pasted into the message.  It remains stuck at the indent level of the source text.
    Might the answer lie in switching to plain text and formatting there?  Tried that and no difference.
    I did discover that if you highlight text pasted in with its "own" indentation preference "baked in" you can indent that text further and even "outdent" it back to where it was, but you cannot shake it's original indentation status to get it back to full left margins.
    Steve

  • In Numbers, how can you change the format of a cell on ipad mini?

    I used the paintbrush but the changes are not taking on the ipad mini but it keeps going back to the 'automatic' default.

    Hi Dempb,
    One of the ways this can happen is if the cells you are trying to format are the result of a formula or coming from elswhere in the table. For instance, if I have the formula SUM that is totaling a column formated "currency" I will not be able to change its format to "text".
    What do you want to do? there may be another way to accomplish it.
    Quinn

  • How can i change the format of videos so they can be synced with my iPod nano

    I have an ipod nano (3rd generation) and have had no problem syncing all my music onto it etc. But most of my videos are unable to be synced and a message saying 'so and so cannot be synced as it cannot be played on this ipod'. I've looked it up and apparently I need to change the video format / create it to ipod or iphone version. I found this by clicking on the episode and under file, clicking 'create new version', there are then three options of versions to create including ipod or iphone but they are all faded and i am unable to click on them. Why is this? help!

    Hello Erin,
    I found an article that addresses the error message you are receiving:
    I recommend reviewing the following article for more information about transferring videos to your iPod nano:
    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod
    http://support.apple.com/kb/TS1497
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How can I change the format of my videos from WMA to itunes?

    I have some videos that are in Windows Midia Player, and when I try to put it in Itunes it doesnt work, I read something that said it has to be in a mpg4 or something like that, my question was how to I change my videos into that format?
    Thank you

    Hi,
    Go to google, and search for videora. Install this and convert your videos. Then, they should add to iTunes. If they are long videos (over an hour, so films and stuff like that) I suggest doing it over night. It will probably freeze up your PC until it's done. It does with mine, mine isn't that slow.

Maybe you are looking for

  • Mega Stick 256MB (USB 1.1)

    I bought the Mega Stick but I don't have the CDRom. Do I need it when I use Windows XP as operating system? My system recognises the Mega Stick when I put it in my USB, but I don't see it on my screen or something. When I copy files from a CD to the

  • Jndi-name in  Message Driven Bean

    Hi I have successfully created the ejb jar file for deployment using sun one studio . I created the message driven bean and I right clicked on the ejb and used the customize option to set the bean properties . But my problem is that the jndi-name in

  • Need Assistance - iRecruitment Link "Search Open Positions at Oracle"

    I am a frequent user of the iRecruitment site to search for open Oracle Positions and have successfully accessed the site in the past. I am using Internet Explorer 8. When I access the link "Open Positions at Oracle (Please use Internet Explorer), a

  • QuickTime Player Problem with iWeb v3.0.4 and Safari v5.1.2

    iWeb v3.0.4 published web site with Safari v5.1.2: I'm in the process of creating a web site (www.koinonia.com) using iWeb v3.0.4.  There is an inserted QuickTime element on the home page which is playing an mp3 music file.  The QuickTime player (Sho

  • "Safari cannot open the page because the network connection was lost"

    I can't not access most of website by my cellular data, why? I still can receive or send on imessage, still can check my facebook but no instagram. What's wrong with my phone 5? I tried to reset my network connection but it didn't work