Custom video sizes dont make sense

The choices for custom sizes to broadcast are
[160x120;240x180;176x144;280x180 etc.]
Now if I broadcast using the 320x180 and play it back in a
320x180 window, the whole thing is squashed. However, in a 320x240
window it looks dandy.
Anyone know the mystery behind this?
Thanks.

I just noticed that the view on the encoder is OK, but that
some width of the picture is getting lost by the time it reaches my
computer.

Similar Messages

  • Custom video sizes?

    Where can I enter a custom frame size for a video project? I often work at non-standard aspect ratios (9x16, 32x9, etc.) Does FCPX support custom video sizes?

    Oops, disregard. It's been asked many times. Here is one answer:
    http://www.fcpxbook.com/CustomProjectSize.html

  • Custom Video Size

    I'm new to FCE and I'm stuck on something that is so simple to do in older products like Premiere: I wish to use a custom video size. I have footage captured years ago at 768x576 which I'd like to work with at that resolution, and I've also a need to work at 128x128@15fps. I don't want to go back to Premiere on OS 9 (which does the job with a few clicks) and I don't want to pay the extra for FCP. Is it not possible just to edit the FCE's presets?
    Thanks,
    Carl
    Mac Mini   Mac OS X (10.4.9)   Size isn't everything...

    No, it is not. FCE is a fixed resolution editing application. It only works in DV nd HDV size formats and frame rates.

  • Help custom video size

    Hi everyone,
    Wistia, a video hosting service has a video on their homepage http://wistia.com/  
    how can I make a  video with odd size dimensions like this?
    I have attempted using "desktop" instead of a pre-set and then using custom dimensions. Please help.
    [email protected]

    Hi Harm,
    After I create a custom size in desktop the video outputs with black bands on top and bottom. I must need to change the video size in more than one area but don't know where? please help.

  • Export Custom Video Size from FCE

    Hi all, Happy Holidays!!
    I'm A DJ and I have footage of events that I have edited and want to use on various pages of my website. I want to resize or "crop" the video and eventually render it as FlashVideo. I want it similar to a "banner size" you would see as ads on webpages. Possible? I was trying to do this by exporting from FCE in QT Pro but it wasn't cropping, it was just stretching...
    Any help would be great..Jeff

    OK. So i found a cropping tutorial using QT Pro on YouTube.
    1. I first used the cropping in the Motion Tab within FCE.
    2. I exported that movie,
    3. Opened it up in QT Pro.
    4. Took a snapshot of the movie.
    5. Opened the snapshot into Photoshop to make a matte.
    6. Went back into QT Pro. Opened the "Show Movie Properties" window and selected the 'Video Track' tab/ 'Visual Settings'.
    7. Added the matte in the 'Mask window' and it worked great.
    Thanks for the help on both sides.....Jeff.

  • Custom video size setup

    I have three small videos that were recorded at 320x240. Do I need to set up the Premiere project to that size or do I just set that size when I output the final WMV file?
    Dean

    You will also find links to many
    free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Ipod mini games dont make sense

    when i play solitare it wont allow me to put the cards where they go in order to win the game, and my music quiz makes NO SENSE!!!Are there instructions ? do i need to reset?

    I'm afraid I can't help you with the solitaire game, but I was able to figure out the music quiz. The iPod will pick a song from your library and give you four possible titles. The object is to figure out the title of your own music.

  • Requirements Dont Make Sense

    Ok. I am new to Java but not new to programming.
    I am taking this super simple Java course which is attempting to teach the basics.
    This was indictated as the requirement specs:
    Rewrite the Java program extends2 to include a Daughter which is inherited from the Parent class. Code a Daughter method that automatically increases her size to +1 of the current Son size and then decreases the Son size by 2.
    Perhaps sense I have developed complicated applications in the past I can't wrap my brain around something that should be one of the first coding assignments.
    I am reading the instructions to indicate that a Daughter class will extend the Parent class. No problem there. But this indicates that a method in Daughter should know what value a Son object has and be able to change it. How in the world would the Daughter class know: A. That a Son object exists at All. B. That there is even a definition for the Son class. C. What mehtods are implemented in the Son class? The only way I see that this can be accomplished is by passing a son object to the Daughter object. Can anyone see something in the requirements that I don't understand?
    Thanks
    David
            extends2
    import java.io.*;
    import java.awt.*;
    import java.lang.*;
    public class extends2 
       public static void main(String[] jim) throws IOException
        class Parent
           protected int size;
           Parent() {size = 7;}
           Parent(int size) {this.size = size;}
              void bumpsize() 
                    size++;
        }//end Parent
         class Son extends Parent
             void jumpsize() 
                    size = ++size +1;
          }// end Son
           Son joe = new Son();
           joe.bumpsize();   // call to the parent method
           System.out.println(" joe Son size is "+joe.size);
           joe.jumpsize(); // call to the son method
           System.out.println(" joe Son size is "+joe.size);
           Parent bill = new Parent(15);
           System.out.println(" Parent bill size is "+bill.size);
           bill.bumpsize();
           System.out.println(" Parent bill size is "+bill.size);
        } //end main
    } //end class

    Perhaps a basic question is :
    Do siblings from an inherited relationship "know"
    about each other?No. That is, there's no way for a class to know what other sibling classes have been defined. You could implement your parent class such that each object or class knows when instances are created. But that's not a language feature (which I think is what you're asking about)--it's just code that you add to constructors.
    Also, is there anyway for the parent class to know
    how many "children it has spawned?"Same thing: It can't know how many classes are defined, but you can write it so that it knows how many instances are created.
    As for your original problem: I agree it's horribly worded. And was that code provided by your instructor? It has a number of problems.
    Anyway, I interpret it as Daughter should take a Son as an arg to its c'tor (can't imagine what else "current son" would mean, unless Son's c'tor updated a static variable in Son or Parent, which I didn't notice it doing) and then it adjusts the sizes as indicated.
    As for "How in the world would the Daughter class know: A. That a Son object exists at All. B. That there is even a definition for the Son class. C. What mehtods are implemented in the Son class?"
    A. It could if you put something in Parent that Daughter could access and that kept track of all objects created. Most likely though it's just supposed to be that you the programmer are supposed to know.
    B. Daughter can't know that. You the programer know that.
    C. Again, you the programmer know. But here, once you know that Son extends Parent, then all you need is that Parent has protected size.
    This is a crap assignment, and yeah, your instructor's response to your question was useless.

  • UPS dont make sense shipping my Ipad to Canada

    Anyone understand this ?  It went from China, to Canada and now it's back to Hong Kong ?!?!  Yesterday i tought i was going to get it today since it was in NB.
    Chek Lap Kok,                                                                                              Hong Kong                                           
    06/08/2011
    20:04
    Pkg shipped; delivery being scheduled                                                                                                                      
    Mount Hope,                                                                        ON,                                                                Canada                                           
    06/08/2011
    0:23
    Package data processed by brokerage Waiting for clearance                                                                                
    Chengdu,                                                                                              China                                           
    06/08/2011
    2:20
    Departure Scan                                                                                
    Fredericton,                                                                        NB,                                                                Canada                                           
    06/07/2011
    11:03
    Receiver assigned clearance to non-UPS broker  Shipment is remaining in UPS control                                                                                
    Chengdu,                                                                                              China                                           
    06/07/2011
    10:55
    Package has shipped and the delivery is being scheduled; check for updates later / Forwarded to the facility in the destination city                                                                                
    Chengdu,                                                                                              China                                           
    06/05/2011
    1:16
    Package has shipped and the delivery is being scheduled; check for updates later                                                                                
    EPZ,                                                                                              China                                           
    06/04/2011
    17:44
    Departure Scan                                                                                
    06/04/2011
    13:05
    The service selected is not available to the destination address / Downgraded, forwarded to consignee, selected service is not available                                                                                
    06/04/2011
    4:22
    Origin Scan                                                                                
    China                                           
    06/04/2011
    23:34
    Order Processed: Ready for UPS                                                                                

    You tend to get different reports on when/where the package is AND when/where the documentation has been processed.  The sensible thing is to carry on with your life but wait for the delivery man. It's on the way. No amount of analysis will affect the time of arrival.

  • How do I make a custom page size in Acrobat X pro?

    I downloaded a gigantic trial version of Acrobat X pro to create a full PDF book cover. I was
    unable to figure out how to make the program do anything at all. The help file and forums did
    not give me the information I needed. Eventually I was able to use 4 other programs in
    combination to create a .doc version of the cover but now I need to turn it into a PDF.
    Can somebody please tell me how to, or how to find out how to, create a custom page size in
    Acrobat X Pro and import a Word document into that page size.
    Alternatively perhaps someone could tell me where I can download an earlier, hopefully more
    usable, version of Acrobat.

    As you have discovered, Acrobat is not a creation or editing tool. It is a program to create a final archive of a document from another application that is readable on most platforms. There have been several tools added to Acrobat to provide more functionality for forms and such, but it was never intended for the creation process.
    Now that you have created your cover in WORD, an appropriate place to create it, you would simply print the page to the Adobe PDF printer. You should change the printer in WORD before the conversion and check the page to be sure that it is still what you wanted. This check is needed for versions prior to OFFICE 2007 that used printer metrics by default. Since OFFICE 2007, printer metrics have been turned off by default.
    If the page does not come out correctly (like is 8.5X11 letter or an A-4 page), then enter the printer properties before printing and set a custom page size there to match your WORD document. I assume the WORD document has the desired size. The printer property change is like putting the correct paper in the printer before printing. Sometimes it seems to sense the application setting, and yet at other times is seems to need to be set.

  • How can I make a custom book size in iBooks Author

    How can I make a custom book size in iBooks Author?

    Book sizes (Landscape or Portrait) are fixed when using iBooks Author.
    Covers, however, can be square.

  • Adobe pro - print settings: How do i make a custom page size list, which i can copy to my other comp

    Adobe pro - print settings: How do i make a custom page size list, which i can copy to my other computers who have adobe pro installed?

    your right.. i ment acrobat pro :-)
    my problem is that i use the PDF printer to export CAD drawings as PDF´s.
    As it is now, there are some pre-defined page sizes in the print settings, and i know i can add custom pages manually one at a time.
    What i want is to copy the list of my danish standard page sizes, and use them on my other versions of acrobat.
    Its like 70 different sizes, and i have them made manually on my current computer, but i hope its possible to copy the list to other computers.
    Maby its some script where i can define the sizes, and then copy to another computer. Im just not that much of a computer genius :-)
    Hope i got through this without to many spelling mistakes...
    Thanks for helping.

  • Building a dvd with custom disk size (disk, ISO, or dvd folder)

    My goal at the end of all this is to get a DVD format of video at 6mbps with menu's to be burned to a blu-ray 25GB disk.
    Using Encore CS6 on a Windows 7 (4.7Gzh 8-core, 16gb ram @2400mhz)
    1st attempt:  I used a bluray disk and tried to burn a dvd format and it ejected my disk and said please insert a black dvd. (used custom disk of 25GB showing extra space available)
    2nd attempt: I thought perhaps I would build it to an ISO (also tried dvd folder) to burn later. it responded with an error message saying, "disk capacity is too small - building navigation failed"
    I dont care how I can get this to work but I would like to get all the video and menu's onto a single disk. Encore limits the "custom disk size" to 99GB so I assume it should work for 25GB (23.2GB).
    The reason I dont want to make a bluray format is because it requires high bitrate and the video is so old it would be a waist of space. I dont need 720p of video from 1935. (unless I can make a bluray format at a 6mbps)
    Thank you for any help you can provide
    bullfrogberry

    You can do this in Encore.
    I am assuming you are only picking presets, and not customizing one. You pick prests in the Transcode Settings dialog. Do you see the "Edit Quality Presets" button? Pick it, customize one by setting the bitrates to get the results you want, then SAVE IT as your own. Then pick that in the transcode setting. (In the transcode setting image, you can see my custom example "Stan Custom 4Mb CBR".) And yes, you can select all your video assets and apply this custom preset to all of them at once. I would do one short one to see if you are getting in the ball park. I would do 2 samples: one in MPEG2-Bluray and one in H.264-Blu-ray. (I'd follow Richard's recommendation to  you and use H.264.)

  • Editing video in native video sizes - Premiere CS3/CS4

    How do I edit with non-specific video sizes such as 640x360 which my still camera captures video to? Everything in Prem CS3 or CS4 seems to be preset editting size environments? I would like to edit the video in it's native resolution and output in it's native resolution.
    Thanks in advance...............

    ========
    That is what my feeble memory is telling me too: CS3 was per Project, and the "Custom" was called Desktop Mode, where the attributes could be altered to suit
    ========
    thats how it works with my cs3... and as you need to match the source in that desktop mode ( and even choose a rendering codec )..its a good idea to use mediainfo or gspot and make notes about video and audio as necessary so that when you 'duplicate' that in the desktop ( custom ) settings you get the right project settings.

  • Editing non standard video sizes

    Hello everyone.
    I have a load of video which is 1120 x 593 its basically screen capture video from my PC in mov format.  All i want to do is edit these clips together and add some nice effects.  So anyway i toddled off and bought a copy of of premier elements and started movie making!
    Anyway i can't seem to figure out how to retain the size of my video as ive got to use a project template, which is great if you are using video from a device but my video is a non standard size.  Surely there is a way of doing this? 
    Do i have to make sure that my imput video matches one of the template, surely not?  You must be able somehow to do your own size?
    Thanks

    Thank you for replying.
    Basically I like to fly x-plane flight simulator which gives you the ability to record your flying and outputs the video as a high quality mov. I wanted to use premier elements just to make a movie of different clips and just add a few effects and titles  I was just going to output them as fla to watch on my pc or the web.  Or as Mpeg 4 to put into powerpoints
    I tried using some of the presets but the quality is either awful or i get the black border.
    I seems that only the profesional edition allows you to set the frame to desktop and use a custom size.   I just can't believe that you need to spend £500 on the CS5 edition to do this? I'm not wanting to do anything clever here, just change the video size.
    Ive got a sinking feeling ive just wasted £75.

Maybe you are looking for

  • How to increase speed of analog read using PCI 6110 and LabView 7.1?

    Hi All, I'm a fairly novice user of LabView and I'm trying to figure out how to make my system as fast as possible. Basically, I'm reading in an analog signal (AI0) together with a trigger signal (PFI0) and I want to sample the analog signal on the f

  • Exporting table data to a CSV file

    hello everyone, i need help on exporting table data to a CSV file. I have a div element containing the table which displays some data. there is a "Export" button just above the table, which if clicked, will export the current data in the table to a .

  • BPM 's Web Service Layer

    Hi all, I had a question on Process As a Web Service. We build this web-service in BPM and the WSDL is auto-generated in BPM. But what is the underlying method that BPM uses to convert usual Java or Fuego Data Types to SOAP i.e. to XSD? Is it using E

  • Itunes/bonjour problem

    I have not been able to update my itunes software for some time now. I have put off trying to fix it because I have been busy lately and decided to fix it today. I went to install the updates for itunes and it told me that the older version of banjou

  • To Find transaction code for maintenance view J_1BT001WV

    Hi Gurus, I have to find transaction code for maintenance view J_1BT001WV. Plz tell me how can i do it. regards Rajesh