Why are there no 1920 X 1080 Choices in the Sequence settings

I watched some videos trying to understand what is the best speed and frame size to use when creating a video.  Basically Lynda.com they are saying 1920 X 1080 is full resolution and this is the desirable setting for outputting best resolution.  The aspect ratio for this is 56%.
Also they explained the best speeds for the type of output you plan to make.  So from this I naturally expected to find a High definition 1920 X 1080 setting as a choice in setting up a new Sequence in Premier Pro.  Wrong!  To my surprise there is only one choice that will give you these setting right out of the box, What's up with the settings choices.  The recommended setting should be right there and easy to find.  Below I show the choice of AVCHD is the only obvious choice for creating a 1920 X 1080 video.  Can you guys help?

Just to toss in my two cents worth - I don't believe any DSLR shoots 1080i, should all be progressive as 1080p or 720p. And back to the "HDV" or "Anamorphic HD" thing - with square pixels (1.0 Pixel Aspect Ratio) 1080i/p is 1920x1080 and if you divide each side of that by 120, you get 16 and 9. A 16:9 ratio between width and height (not 56% or 1.7777777 !!!!). "Anamorphic" widescreen is a way of "faking it", and saving a smaller file since less data is involved. That is how HDV works. It uses 1440x1080 pixels, and they are not square, rather they are rectangular with a 1.333 pixel aspect ratio. The pixels are wider than they are tall, and that makes up the difference so that it still plays back looking like 16:9 (IF the player respects the PAR). Simple math shows that 1440 x 1.333 = 1920! So 1440x1080 with 1.333 PAR "looks" the same as 1920x1080 with 1.0 PAR, even though 1440x1080 comes out to 4:3. Which brings up the last point, if anyone IS editing HDV footage, and wants to export to say YouTube or other other computer/tablet playback formats, do NOT export as 1440x1080 because most players will not pay attention to the PAR and the video will look like 4:3 (players wrongly assume 1.0 PAR). You will want to export as 1920x1080 with 1.0 PAR and then all is right with the world. Or take it down to 720p at 1280x720, also 16:9 with 1.0 PAR for correct playback.
Thanks for reading and good night ;-)
Jeff

Similar Messages

  • Why are there 2 thin red vertical lines on the screen of my MBP 15" retina which is only 2 months old!

    I would just like to understand why there a two thin red vertical lines on the screen
    I suspect I need to bring into an apple store for diagnostics but is anyone aware of the likely cause?
    thanks v much!

    It could be a GPU issue, a display issue or a display connection issue.  The genius bar technician will offer you a definitive answer and should fix it under the warranty provisions.
    Ciao.

  • Why are there faint static noises coming out of the speaker of my iPod touch

    There are faint static noises coming out of the speaker of my iPod touch fifth generation

    I Just got home and noticed it. It's coming out of the iPods speaker, Not headphones.
    For a few moments it was making popping noises. I shut it down and the static is still going. No sounds are playing.

  • Why are there so many other programs downloaded with the Adobe programs?

    I have an older computer with only 10 GB harddrive. I keep getting programs that I don't want and can't use. When it asks if I want this or that program, I always check no. But many times there is no asking, it just downloads these programs that are taking up what little free space I have which is only 5%.

    Business 101: Sell advertising via "sponsored downloads" = make more money.
    There are direct downloads that don't have the unwanted "bundled" software.
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)

  • Why are there CORBA error messages -- COMM_FAILURE when using the orb obj?

    Hi Guys,
    I followed the tutorial http://download.oracle.com/javase/6/docs/technotes/guides/idl/GShome.html
    compiled and run the code. Everything works fine however whenever I use the ORB orb object I get the following message
    both in my Naming Service and the HelloServer output:
    2010-12-10 12:35:46.505 FINE Transport to 127.0.1.1:44100: stream closed on read < 0
    2010-12-10 12:35:46.506 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): getMessage() -- COMM_FAILURE
    2010-12-10 12:35:46.507 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): streamClosed()
    2010-12-10 12:35:46.508 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): close()
    Why is this happening?
    I have also installed jacorb and added it to my class path and run the examples with:
    jaco -Djacorb.config.dir=. -DORBid=HelloClient HelloServer
    ns -Djacorb.naming.ior_filename=/home/zorg/Project/Java/CORBA/NameService/NS_Ref
    jaco -Djacorb.config.dir=. -DORBid=HelloClient HelloClient
    I have included the code from the tutorial for convinience:
    // HelloServer.java
    // Copyright and License
    import HelloApp.*;
    import org.omg.CosNaming.*;
    import org.omg.CosNaming.NamingContextPackage.*;
    import org.omg.CORBA.*;
    import org.omg.PortableServer.*;
    import org.omg.PortableServer.POA;
    import java.util.Properties;
    class HelloImpl extends HelloPOA {
      private ORB orb;
      public void setORB(ORB orb_val) {
        orb = orb_val;
      // implement sayHello() method
      public String sayHello() {
        return "\nHello world !!\n";
      // implement shutdown() method
      public void shutdown() {
        orb.shutdown(false);
    public class HelloServer {
      public static void main(String args[]) {
        try{
          // create and initialize the ORB
          ORB orb = ORB.init(args, null);
          // get reference to rootpoa & activate the POAManager
          POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
          rootpoa.the_POAManager().activate();
          // create servant and register it with the ORB
          HelloImpl helloImpl = new HelloImpl();
          helloImpl.setORB(orb);
          // get object reference from the servant
          org.omg.CORBA.Object ref = rootpoa.servant_to_reference(helloImpl);
          Hello href = HelloHelper.narrow(ref);
          // get the root naming context
          org.omg.CORBA.Object objRef =
              orb.resolve_initial_references("NameService");
          // Use NamingContextExt which is part of the Interoperable
          // Naming Service (INS) specification.
          NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
          // bind the Object Reference in Naming
          String name = "Hello";
          NameComponent path[] = ncRef.to_name( name );
          ncRef.rebind(path, href);
          System.out.println("HelloServer ready and waiting ...");
          // wait for invocations from clients
          orb.run();
          catch (Exception e) {
            System.err.println("ERROR: " + e);
            e.printStackTrace(System.out);
          System.out.println("HelloServer Exiting ...");
    // Copyright and License
    import HelloApp.*;
    import org.omg.CosNaming.*;
    import org.omg.CosNaming.NamingContextPackage.*;
    import org.omg.CORBA.*;
    public class HelloClient
      static Hello helloImpl;
      public static void main(String args[])
          try{
            // create and initialize the ORB
            ORB orb = ORB.init(args, null);
            // get the root naming context
            org.omg.CORBA.Object objRef =
                orb.resolve_initial_references("NameService");
            // Use NamingContextExt instead of NamingContext. This is
            // part of the Interoperable naming Service. 
            NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
            // resolve the Object Reference in Naming
            String name = "Hello";
            helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));
            System.out.println("Obtained a handle on server object: " + helloImpl);
            System.out.println(helloImpl.sayHello());
            helloImpl.shutdown();
            } catch (Exception e) {
              System.out.println("ERROR : " + e) ;
              e.printStackTrace(System.out);
    }Edited by: 819887 on 10-Dec-2010 04:51
    Edited by: 819887 on 10-Dec-2010 04:58

    Figure out the actual problem is when the naming service is resolving the name on line:
    helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));

  • Why are there 26 firefox.exe processes running when the taskbar shows none?

    Win 7 professional, Firefox 25.0.1. If I shut down Firefox and restart it I often get an error that a copy is already running. Checking the Task Manager shows many firefox.exe processes (26 this morning) even though the application tab shows none.

    Hello Axis,
    Can you please confirm if this happens each time you are using Firefox? Also, the cache size wouldn't have a big bearing on this issue happening. Can you please try if this issue happens when you are running Firefox in safe-mode (instructions below). if it doesn't then we can narrow the issue to a plugin / addon.
    <hr>
    Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * On Windows you can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac you can open Firefox 4.0+ in Safe Mode by holding the '''option''' key while starting Firefox.
    * On Linux you can open Firefox 4.0+ in Safe Mode by quitting Firefox and then going to your Terminal and running: firefox -safe-mode (you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    [[Image:FirefoxSafeMode|width=520]]
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    <hr>
    Thank you.

  • Why are there more than one tabs open all the time and how do I change that? I just had to do a reinstall of Windows-tech installed the newest Firefox. There are always at least 2 tabs open and I get an error msg. when trying to close. Tammie

    I use Firefox 9 on Windows XP, desktop

    hello Mac.INXS, please [[Clear the cache - Delete temporary Internet files to fix common website issues|clear the cache]] & [[Delete cookies to remove the information websites have stored on your computer|cookies from mozilla.org]] and then try logging into AMO again.

  • Why are there duplicates to all my apps in the top left corner of my iPad?

    I can only move the apps in the top left and they can go anywhere, even on other apps. It is only on the first page of apps.

    See if this makes them return to normal.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Why are there so many more choices on the USA iTunes Store? Surely having an iTunes account should let you access all itunes availability the world over? Also how do you request films/tv series to the UK itunes?

    Why are there so many more choices on the USA iTunes Store? Surely having an iTunes account should let you access all itunes availability the world over?
    Also how do you request films/tv series to the UK itunes? There's tv series I'd like but they're incomplete like The Batman &amp; Xena Warrior Princess. And films theta aren't available for download but you can purchase in a store like HMV?  Apple isn't doing itself any favours by secluding countries by their store. They'd make billions if you could just select the iTunes Store you want to search &amp; purchase from just by signing in! If anything what they're doing is putting themselves into a corner, other companies like Samsung &amp; HTC are already on too of them for innovation &amp; ease of use. The people they're attracting are predominantly existing Apple users not new customers. What do you guys think?

    It's not Apple's choice, they can only sell a particular item where the content provider/rights-holder has granted them a license to sell them. Content is licensed by the rights-holders to Apple on a country-by-country basis, each country therefore has to have its own store, and you have to be in a country to use its store - they want control over where their content is available.
    You can try requesting that an item be added to the UK store via this page, but unless the rights-holder agrees to then Apple won't be able to sell it here : http://www.apple.com/feedback/itunes.html

  • HT1222 Why are there error while updating my ipad

    Why are there error while updating my ipad from 5.1 to 7.1.1

    Because something is wrong...
    You can check here for troubleshooting information on specific error messages: http://support.apple.com/kb/ts3694

  • Why are there so many flash updates?

    Why are there so many Flash updates… I have had two in the last week and at least one more since the start of the year. It seems to have really got silly this last 12 months, is Flash really that unsecure and unstable that it needs this many fixes and updates?
    I know you can tick the install in background box when updating but I like to know what is going onto my computer and given Adobe's knack of crashing my system when using PS and AI I don't really want them silently installing anything.

    99% of the time the update gets prompted by Youtube or BBC when videos won't play on there sites and I follow the links through them. You would like to think that big sites like these would not allow false links to malware to crop up, but it isn't out of the question. Next stop, up to date anti virus…..
    As far as Youtube goes I thought they had adopted HTML 5 now as standard and didn't rely on Flash?

  • If i am the only user and owner of my macbook, then why are there 78 users in the directory editor?

    Hi guys just wanted to know little bit about the open directory as my MacBook Pro has been playing up on and off at least a couple of years.  I have been advised by Apple over the phone or as well as over the genius bar in trying to get my mac to behave.  This normally solves whatever problem that has been happening at the time. "Great, job done!"...  Not so much, as another problem eventually shows it's ugly pixelated face again and then we end up going round the Infinite loop ride one more time...  And this ride ain't always free!  I have forked out about £600 on it so far and it wasn't cheap in the beginning!  Anyway I have just got off the ride and before I get punched by a plyst to get back on I would rather learn about the things I don't understand so hopefully I can resolve the matter without hair loss.  So my main question so far is why are there 78 user names (most of which are computer related names, not all) are found in Directory Utility?  I do not play games on my Mac it is mainly used for media such as iPhoto, iTunes, pages, mail and surfing the net.  So which out these 78 users do I select as a server?
    If you have any suggestions or pointers then please post a reply.
    Thanks for reading
    Orion

    So which out these 78 users do I select as a server?
    None. It's normal. Make no modifications.
    It's not clear what trouble you are experiencing, or if anything is wrong at all. If your Mac is not behaving as you expect it should, describe what's wrong in as much detail as possible.
    Include all relevant details regarding your MacBook Pro starting with which one of its three dozen models you have. Posting the results of EtreCheck will help with that. Read about it here.

  • Why are there duplicates in my calendar?, why are there duplicates in my calendar?

    Why are there duplicates in my calendar?

    Is it possible that you or someone copied them to that folder or an automated progress making a backup to that folder.  Normally if you upload the photos then will be stored in your iPhoto library folder. 

  • Why are there no CC Apps in my Creative Cloud Folder?

    Why are there no CC Apps in my Creative Cloud Folder? Just finished cramming Adobe Creative Cloud Flash Professional info. Tried to use it and found that it wasn't in my Apps Folder, nor anywhere else. During my search I discovered that none of the other CC apps were there either. All CS6 Pro apps are there, but no CC.
    IMac 21.5" desktop;  OSX 10.8.5;   2.5 GHz Intel Core i5:   1333 MHz;   4 GB DDR3;   500 GB HD + 500 GB external HD 

    Could you try to scroll down a bit and look into the "Find New Apps" section. I have attached a screenshot for your reference.
    In case you still do not see any CC applications, login to https://creative.adobe.com/products and try to download any CC app and then check if it gets installed and you see it under the "Your apps" section of CC desktop app.

  • Why are there itunes store charges on my credit card statement but there are no purchases under my itunes account?

    Why are there itunes store charges on my credit card when there are no purchases under my itunes account?

    Have you added or changed your card details on your account and they are temporary store holding charges ?
    Unknown charges : How iTunes Store charges might look on credit and debit card statements

Maybe you are looking for

  • How to upload file and put in BDC, need sample func specs to practice on...

    Hi guys, I do not have anything to do as of the moment, so I want to practice BDC on, lets say SU01. I have seen existing BDC programs here and I am confused as to why some are using read dataset, open dataset, etc. and others are not using them at a

  • How to use Golden Gate for ETL purpose

    Hi Oracle Gurus, i have a situation where i am thinking to replace our oracle PL/SQL package with Golden Gate to process our ETL. I mean we use PL/SQL package, which has several procedures and functions in it and we process our application data using

  • HtmlHelp popups do not display properly on Chinese MUI systems

    I have the following code that displays properly on a Windows 8.1 Chinese OS, but incorrectly on an English OS with a Chinese Language pack. Any idea why?  The code is compiled for UNICODE so that TCHAR=wchar_t.  Thanks. HH_POPUP HP = {0}; HP.cbStruc

  • Crystal Report XI & ReportViewerBean

    hi.. I would like to know if ReportViewerBean is compatible with crystal report XI to print the various reports. I wanted to use Swings & ReportViewerBean on the linux (instead of JRC as my application is not web-based) for various reports management

  • Simulator pay down revolving test

    There is another thread about the simulator and paying down installment loans.  I don't have student loans so I have no option to pay those down in my simulator nor do I have an option to pay down my auto loan.  There is a lot of skepticism towards t