Frame sizes?

hello all.
Can anyone help me understand the "logic" with frame sizes when exporting.
Let me elaborate. I exported a sequence from FCP via quicktime movie. when I bring up the info window on the exported file it says 3 different things in reference to the frame size:
1280x1080 then in parenthesis next to it (1888x1062) then under Normal size it says 1920x1080.
***!!!! Which one is it? Is there any logic to it?
thanks
cheers

Effects>Video Filters>Matte>Widescreen.
x

Similar Messages

  • Advice on sequence settings - frame size for VHS video in FCP

    Hello,
    I was hoping that I could get some advice on editing and output for video captured from VHS Tapes to ensure the best quality possible.
    My current workflow to digitize the VHS tapes is:
    VHS signal from JVC S7600u with TBC into ADVC 300 (no de-interlace or other filters set) into a Mac Pro via firewire.  Capture preset in FCP is DV NTSC 48khz.
    Once in FCP - the captured VHS video frame size is 720 X 480, Vid rate is 29.97, pixel aspect is NTSC-CCIR 601 and field dominance is lower (even)
    My questions are:
    If my final destination is for You Tube sharing , are these the best sequence/ frame size settings or should I convert the sequence frame size to 640 X 480, or should I leave at 720 X 480 while working in FCP and then output to Compressor and select the H264 you tube sharing video setting and change the frame size to 640 X 480? 
    Should I de- interlace for internet/youtube destination?
    Should I de-interlace for DVD/TV destination?
    If I want to burn the finished project to DVD and watch the video on a progressive montitor/ TV screen, what would be the best settings/frame size for that?
    If any of you out there have experience with editing vcr/analog video in FCP and have a good workflow to ensure best quality, I would really appreciate  any advice/suggestions.
    Thanks in advance.

    Digitize to 720X480 frame size in FCP. In compressor, your YouTube preset will automatically deinterlace and a square pixel aspect ratio.No deinterlacing for DVD.
    Russ

  • How do I set the frame size

    I am Making a program for purchasing games, with the basic layout alsot done, except on problem. When the purchase button is pressed, a dialog shows up but nothing is seen until i resize it. How would i set the frame size so that i do not need to resize it each time? below is the code for the files. Many thanks in advance.
    CreditDialog
    import java.awt.*;
    import java.awt.event.*;
    class CreditDialog extends Dialog implements ActionListener { // Begin Class
         private Label creditLabel = new Label("Message space here",Label.RIGHT);
         private String creditMessage;
         private TextField remove = new TextField(20);
         private Button okButton = new Button("OK");
         public CreditDialog(Frame frameIn, String message) { // Begin Public
              super(frameIn); // call the constructor of dialog
              creditLabel.setText(message);
              add("North",creditLabel);
              add("Center",remove);
              add("South",okButton);
              okButton.addActionListener(this);
              setLocation(150,150); // set the location of the dialog box
              setVisible(true); // make the dialog box visible
         } // End Public
         public void actionPerformed(ActionEvent e) { // Begin actionPerformed
    //          dispose(); // close dialog box
         } // End actionPerformed
    } // End Class
    MobileGame
    import java.awt.*;
    import java.awt.event.*;
    class MobileGame extends Panel implements ActionListener { // Begin Class
         The Buttons, Labels, TextFields, TextArea 
         and Panels will be created first.         
         private int noOfGames;
    //     private GameList list;
         private Panel topPanel = new Panel();
         private Panel middlePanel = new Panel();
         private Panel bottomPanel = new Panel();
         private Label saleLabel = new Label ("Java Games For Sale",Label.RIGHT);
         private TextArea saleArea = new TextArea(7, 25);
         private Button addButton = new Button("Add to Basket");
         private TextField add = new TextField(3);
         private Label currentLabel = new Label ("Java Games For Sale",Label.RIGHT);
         private TextArea currentArea = new TextArea(3, 25);
         private Button removeButton = new Button("Remove from Basket");
         private TextField remove = new TextField(3);
         private Button purchaseButton = new Button("Purchase");
         private ObjectList gameList = new ObjectList(20);
         Frame parentFrame; //needed to associate with dialog
         All the above will be added to the interface 
         so that they are visible to the user.        
         public MobileGame (Frame frameIn) { // Begin Constructor
              parentFrame = frameIn;
              topPanel.add(saleLabel);
              topPanel.add(saleArea);
              topPanel.add(addButton);
              topPanel.add(add);
              middlePanel.add(currentLabel);
              middlePanel.add(currentArea);
              bottomPanel.add(removeButton);
              bottomPanel.add(remove);
              bottomPanel.add(purchaseButton);
              this.add("North", topPanel);
              this.add("Center", middlePanel);
              this.add("South", bottomPanel);
              addButton.addActionListener(this);
              removeButton.addActionListener(this);
              purchaseButton.addActionListener(this);
              The following line of code below is 
              needed inorder for the games to be  
              loaded into the SaleArea            
         } // End Constructor
         All the operations which will be performed are  
         going to be written below. This includes the    
         Add, Remove and Purchase.                       
         public void actionPerformed (ActionEvent e) { // Begin actionPerformed
         If the Add to Basket Button is pressed, a       
         suitable message will appear to say if the game 
         was successfully added or not. If not, an       
         ErrorDialog box will appear stateing the error. 
              if(e.getSource() == addButton) { // Begin Add to Basket
    //          GameFileHandler.readRecords(list);
                   try { // Begin Try
                        String gameEntered = add.getText();
                        if (gameEntered.length() == 0 ) {
                             new ErrorDialog (parentFrame,"Feild Blank");
                        } else if (Integer.parseInt(gameEntered)< 0
                                  || Integer.parseInt(gameEntered)>noOfGames) { // Begin Else If
                             new ErrorDialog (parentFrame,"Invalid Game Number");
                        } else { // Begin Else If
                             //ADD GAME
                        } // End Else
                   } catch (NumberFormatException num) { // Begin Catch
                        new ErrorDialog(parentFrame,"Please enter an Integer only");
                   } // End Catch
              } // End Add to Basket
         If the Remove From Basket Button is pressed, a  
         a suitable message will appear to say if the    
         removal was successful or not. If not, an       
         ErrorDialog box will appear stateing the error. 
         if(e.getSource() == removeButton) { // Begin Remove from Basket
              try { // Begin Try
                        String gameEntered = remove.getText();
                        if (gameEntered.length() == 0 ) {
                             new ErrorDialog (parentFrame,"Feild Blank");
                        } else if (Integer.parseInt(gameEntered)< 1
                                  || Integer.parseInt(gameEntered)>noOfGames) { // Begin Else If
                             new ErrorDialog (parentFrame,"Invalid Game Number");
                        } else { // Begin Else If
                             //ADD GAME CODE
                        } // End Else
                   } catch (NumberFormatException num) { // Begin Catch
                        new ErrorDialog(parentFrame,"Please enter an Integer only");
                   } // End Catch
              } // End Remove from Basket
         If the purchase button is pressed, the          
         following is executed. NOTE: nothing is done    
         when the ok button is pressed, the window       
         just closes.                                    
              if(e.getSource() == purchaseButton) { // Begin Purchase
                   String gameEntered = currentArea.getText();
                   if (gameEntered.length() == 0 ) {
                        new ErrorDialog (parentFrame,"Nothing to Purchase");
                   } else { // Begin Else If
                        new CreditDialog(parentFrame,"Cost � 00.00. Please enter Credit Card Number");
                   } // End Else               
              } // End Purchase
         } // End actionPerformed
    } // End Class
    RunMobileGame
    import java.awt.*;
    public class RunMobileGame { // Begin Class
         public static void main (String[] args) { // Begin Main
              EasyFrame frame = new EasyFrame();
              frame.setTitle("Game Purchase for 3G Mobile Phone");
              MobileGame purchase = new MobileGame(frame); //need frame for dialog
              frame.setSize(500,300); // sets frame size
              frame.setBackground(Color.lightGray); // sets frame colour
              frame.add(purchase); // adds frame
              frame.setVisible(true); // makes the frame visible
         } // End Main
    } // End Class
    EasyFrame
    import java.awt.*;
    import java.awt.event.*;
    public class EasyFrame extends Frame implements WindowListener {
    public EasyFrame()
    addWindowListener(this);
    public EasyFrame(String msg)
    super(msg);
    addWindowListener(this);
    public void windowClosing(WindowEvent e)
    dispose();
    public void windowDeactivated(WindowEvent e)
    public void windowActivated(WindowEvent e)
    public void windowDeiconified(WindowEvent e)
    public void windowIconified(WindowEvent e)
    public void windowClosed(WindowEvent e)
    System.exit(0);
    public void windowOpened(WindowEvent e)
    } // end EasyFrame class
    ObjectList
    class ObjectList
    private Object[] object ;
    private int total ;
    public ObjectList(int sizeIn)
    object = new Object[sizeIn];
    total = 0;
    public boolean add(Object objectIn)
    if(!isFull())
    object[total] = objectIn;
    total++;
    return true;
    else
    return false;
    public boolean isEmpty()
    if(total==0)
    return true;
    else
    return false;
    public boolean isFull()
    if(total==object.length)
    return true;
    else
    return false;
    public Object getObject(int i)
    return object[i-1];
    public int getTotal()
    return total;
    public boolean remove(int numberIn)
    // check that a valid index has been supplied
    if(numberIn >= 1 && numberIn <= total)
    {   // overwrite object by shifting following objects along
    for(int i = numberIn-1; i <= total-2; i++)
    object[i] = object[i+1];
    total--; // Decrement total number of objects
    return true;
    else // remove was unsuccessful
    return false;
    ErrorDialog
    import java.awt.*;
    import java.awt.event.*;
    class ErrorDialog extends Dialog implements ActionListener {
    private Label errorLabel = new Label("Message space here",Label.CENTER);
    private String errorMessage;
    private Button okButton = new Button("OK");
    public ErrorDialog(Frame frameIn, String message) {
    /* call the constructor of Dialog with the associated
    frame as a parameter */
    super(frameIn);
    // add the components to the Dialog
              errorLabel.setText(message);
              add("North",errorLabel);
    add("South",okButton);
    // add the ActionListener
    okButton.addActionListener(this);
    /* set the location of the dialogue window, relative to the top
    left-hand corner of the frame */
    setLocation(100,100);
    // use the pack method to automatically size the dialogue window
    pack();
    // make the dialogue visible
    setVisible(true);
    /* the actionPerformed method determines what happens
    when the okButton is pressed */
    public void actionPerformed(ActionEvent e) {
    dispose(); // no other possible action!
    } // end class
    I Know there are alot of files. Any help will be much appreciated. Once again, Many thanks in advance

    setSize (600, 200);orpack ();Kind regards,
      Levi
    PS:
        int i;
    parses to
    int i;
    , but
    [code]    int i;[code[i]]
    parses to
        int i;

  • Iphoto Books: How to Enable "fit photo to frame size" when theme grays it out by default

    Don't know if this has been posted before or not, but I've been using the "Modern" Theme in iPhoto books and trying for the life of me to figure out how to get my photos to not crop while they're in a single-photo framed layout (I'm not using 4:3 photos; mine are 8.5" by 11"). Even fully zoomed out my photos cut off at the top and bottom. I knew about the "fit photo to frame size" option but the theme had it greyed out--except for on one page, in which it was already enabled. So I must have done it before without paying attention, but it took forever to figure out how to do it again.
    Here's how:
    1. Open up the page you want to modify. I'm assuming here that your photos are already placed, but if not, place the photo you want to use.
    2. Click the Layout tab.
    3. Change the layout to the single page full bleed option--no frame. Your photo should now be blown up across the page.
    4. Right click the photo. The "fit photo to frame size" option should now be available for you to check off. Go ahead and activate it.
    5. Change the layout back to the single photo framed option. Your photo will now fit inside the frame, although to truly see the whole thing you have to open up the Options tab and select the borderless option.
    To save time in steps 1-3, and step 5, you can also change the layout of all your pages at once by clicking page 1 (not the cover, the next page), then opening the Layout tab, then selecting the layout you want. You still have select the "fit photo to frame size" individually for each photo.
    Hope this is useful for people.
    - Jake

    There is an option for the Initial View that is "Magnification:" "Fit Page".  And this works for the initial page when the PDF is opened and it does not matter what the page size it, Acrobat/Reader will automatically fill the screen with the page. If you want the zoom type to change with each page then you need  add a page open script to each page to set the pages zoom type to "zoomtype.fitP"
    this.zoomType = zoomtype.fitP;

  • Is it possible to set frame size for a new project ?

    Hi all,
    i would like to create a video in which there will be 2 videos playing the same content from a different angle.
    Each video is 512 x 384 .
    So i would like to set the frame size of the project as 1024 x 768 in order both videos to exist.
    I searched around for tutorials regarding this but i didn't find anything similar.It seems as if i cannot set the frame size of the project from the start.
    So,is there a way to do this?
    Thank you for your time reading this.
    Regards,
    nikits72.

    Hi and thank you for your answers.
    @->shoternz
    It will be displayed in my monitor and probably on you tube.Btw your remark on size was very accurate.Didn't think of that.
    Although i could use a little bigger height to use it to display a logo or something....
    I am very premiere newbie as you can understand.
    Regards,
    nikits72

  • How to get the Frame size in H.263 by JMF ?

    Dear all,
    How to get the individual frame size in H.263 format if the H.263 file is a format of InputStream ???

    VideoFormat.getSize() returns a Dimension of a frame. H263Format is a subclass of VideoFormat. Guess you could get that object from getFormat() in your stream if it's a PullBufferStream. Or, with a Processor, you could do getTrackControls() and iterate through the TrackControl.getFormat()s until you find the VideoFormat.
    Suppose you could also get a FrameGrabbingControl, grab a frame and get the Dimension from him.
    --invalidname

  • AV output and non-standard frame sizes

    I usually work in non-standard frame size for my FCP projects because my final output will be in a 2:35:1 ratio. I use a Blackmagic Ultrastudio Mini Monitor as an HDMI output to a client monitor. Up until a few months ago the AV output of FCPX would allow the Mini Monitor to accept a frame size of 1920x818 and letterbox the output to 16x9 on this consumer grade LCD. One day, this just stopped working... I've reached out to Blackmagic and they have no solution or reason why this happened, and are not willing to offer support since what I was achieving wasn't an "officially supported" feature. Now, the AV output will distort the image vertically to fill a 16x9 frame. At this point I am stuck having to use either a matte layer or a widescreen effect on individual clips to output correctly to my monitor which increases edit time having to re-render any edits underneath the matte and having to re-order the letterbox effect after apply color correction etc. It was also very easy to adjust the frame offset with this wide angle project size.
    Is anyone editing in 2:35:1 (or other cinema standard) projects and getting successful conversion on output? What are you using?
    Cheers,
    Matt

    Thanks Tom, you clarified it .......  or at least something clicked in my brain.
    I was trying to set "Custom" when I created the new project.
    I didn't know, or had forgotten, that in the "error" window I could select "Custom".
    All is now well and FCP X 10.1.1 is pretty clever after all!
    There is one weird thing I'd like to mention.
    When I clicked on "Custom" the 960 x 600  frame dimensions appeared but the  frame rate was listed as 23.98p as shown in the screenshot below.
    So what's wrong with that?
    Well the clip is 30p  and I naturally thought I was going to end up with a project with an incorrect frame rate.
    Now here's the funny thing  .........  when I selected the project and viewed it in the Inspector it was the correct 30p
    So why was I given that worrying piece of misinformation.

  • Final Cut Pro 7 Slow Render, Frame size changing

    I have a sequence open with the following properties:
    29.97 fps frame size: 720 X 480, Compressor: DV/DVCPRO - NTSC, Audio Rate: 32.0 KHZ
    The Clips I'm editing with have the following properties:
    29.97 fps, 854X480, DV/DVCPRO - NTSC, 32.0 KHZ
    Everything was going smoothly until this one clip I dragged in with the exact same properties changed it's frame size. There had been two perfect black bars on the top and bottom of all the shots up until this one clip that changed frame size and covered up those black bars. It's also taking forever to render any small edit I do with that troublesome clip. I was thinking it might have to do with the difference in frame sizes from the sequence properties and the clip properties. I tried to change that by clicking: 1. Sequence 2. Settings.... and changing the width and heigth but it wouldn't let me. Anyone got some tips?

    Where did you get that footage?  854x480 is a display size.  It sounds like your footage was ORIGINALLY anamorphic DV.  Which is actually 720x480.  You would need to tell FCP that the footage is anamorphic, either on ingest, or by checking the anamorphic column in the browser-- EXCEPT that somehow the clips are baked in to a non standard size-- like someone exported them at the anamorphic display size.  You would do this for example if you were making a file for projection or computer use, where the anamorphic flag would not necessarily be recognized.  But you normally would not do this if you were still working with the footage in an editing program.
    You might also note that the top clip above is set to less than 100% scale.
    What happens if you select all in your sequence and Edit>remove attributes>basic motion and distort?
    Quite a mess you've built for yourself, or someone handed you.

  • Final Cut Pro 7 Log and Capture Frame Sizes

    When importing from a Roland VR-5 mixer into Final Cut Pro 7, we get black border/bars on the left and right sides of the preview. We didn't think anything of it, that it might have just been the preview window. These bars are recorded though, it's as if we're not recording the full frame size coming out of our mixer. We went into the settings on the VR-5 and everything was configured to be 720x480, and that the settings in FCP matched. The image still gets cut off. Any ideas?

    Some background:
    720x480 is a non-square format. It can either be the equal of 640 x 480 (4:3) or 954 x 480 (16:9) depending on what you tell your editing software the incoming stream will be.
    If you told FCP the incoming stream is DV/NTSC 4:3 and you are getting a pillarboxed image, FCP is thinking you are sending it a 16:9 version and is filling the the sides to keep the aspect ratio correct.
    It would help to know a whole lot more about settings within FCP and what your mixer is putting out.
    x

  • How do i undo my changes in sequence settings? (the frame size)

    I have ran into a very frustrating problem. I have FCP 7 and my footage i am editing is HDTV 1080i. With this footage i have to change the frame size to 1440 by 1080 and in another instance i change it to another frame size. The problem is that i made a mistake with one of the frame sizes and i dont know how to undo the mistake. If i enter in a new frame size, the video will only add on to my mistake frame size instead of replacing it. The only way i see fixing this is redoing everything...but there has to be an easier way...any help?! Or am i unclear?

    Select the clips that aren't filling the frame correctly, and then right click on one of them to select "remove attributes". From the dialog box that will open, select "basic motion" then click OK. This should take care of your problem if I'm reading this correctly.
    Jerry

  • Sequence frame size/black border

    I created several sequences in Final Cut Pro 4, which all seem to have the same settings, but some of them have a black border around the picture and a smaller picture size. When I export a Quick Time Movie of the sequence, the boarder still exists in iDVD.
    How do I make the picture fill the entire frame?
    My footage was filmed on Mini DV.
    My clip and sequence settings are: 29.97 fps (video rate), 720x480 (frame size), DV/DVC Pro (compressor), NTSC - CCIR 601 (pixel aspect) 48.00 KHz (audio rate)
    Mac Mini   Mac OS X (10.4.6)  

    Hey Cala
    As you say, when you set your sequence as JPEG accidently, and keeping the aspect ratio and everything as you say, it shouldn't have to reduce your frame size of your media.
    Have you tried to make a new sequence with the preset settings for DV and put the referred clip on it? It should present it normally, filling all the frame.
    Checking on your screenshot, it seems to present it as if it were capture it like Photo-JPEG Offline edit. It is the same way appears the clips when are captured with that setting on a DV preset sequence.
    I don't know how much problem would be to recapturing that clip again, before put your sequence settings on the preset for DV, as the same for the Capture preset. Then, it must work all fine.
    About the configuration between Panther 3.9, QT 6.5 and FCP 4.5, in my case never have appeared some situation like this one. Even on Tiger-QT7-FCP 5.
    This is so odd. I can only think on recapturing checking all the presets pointing in DV/DVCPRO NTSC. Hope it works! (It ought to be)
    Best regards!

  • Frame size discrepancies in project settings?

    Hi Guys
    I have some new information and some observations on my problems with getting full screen output.
    I looked through all the project settings and I noticed that the ones I was trying to use…
    HD 1080i (60i) and HDV 1080i 30 say that the output is at a16 to 9 ratio and have a frame size of 1440 by 1080i.
    This is the frame size or ratio, I kept trying to import.
    I finally realized that this isn't a frame size that is proportional to the image ratio that it lists.
    16 by 9 would really be proportional to 1440 by 810.
    The 1440 by 1080 video that I import using either of these,does not export full screen even if it’s exported the same size it comes in, i.e.1440 in and 1440 out.
    So I looked through the project setting for a selection where the stated ratio and the frame size matched.
    I found HDV 720p 30.
    16 by 9 at a 1280 by 720 frame size.
    This would be an easy size for my to work in.
    So I made a video at that size then loaded it into PE8 and it exported fine.
    Full screen no border.  In fact it comes out full screen no matter what size I export it.
    When I exported the same video at 1600 by 900 it exported full screen and looked fine.
    Then I went back and loaded the same 1280 by 720 video inthe HDV 1080i 30 settings.
    It also came out full screen with no border.
    So the problem is that as far as I can see the selection screen is wrong about the frame size for both the HD 1080i and the HDV 1080isettings.
    You really have to load in something at 1600 by 900 or proportional to that.
    And as far a I can find there is no setting that supports any thing other the wide screen except for the Standard 48kHz settings.
    It looks like unless you want to go to a wide screen format 720 by 480 is the only option.
    Now I’ll have to decide whether I want to do future projects wide screen or live with the restrictions on frame size.
    I hate to change horses in the middle of the stream so I may just stick with the smaller size for the Lucy videos but other projects I will do wide screen.
    Thanks again for all the help.
    Mike

    This question is from some other forum member. Don't know why they're linked to my e-mail address.
    Fran (luvsfotos)
    > Date: Tue, 7 Jun 2011 22:22:36 -0600
    From: [email protected]
    To: [email protected]
    Subject: Re: Frame size discrepancies in project settings?
    Hi Guys
    Ok, I think I get it at last.
    So when I create a 1440 by 1080 file, to use in the 1080i format, it should change the PAR from 1 to 1.333 when I create it, but since I can't control that I get an image that is too small, even though the pixel size is the same.  The aspect ration should still end up 16 by 9.
    So since Poser creates everything with a PAR of 1, my only option if I want a wide screen video is to actually pick a 16 by 9 ratio when I output it and ignore the listed frame size. 
    I still don't quite get why the image is both shorter and narrower, it seems like it should only be narrower but I'll live with it.
    And there is no way to make PE8 output a full height image in the wide screen format that 3 by 4 except to drag it larger in the preview window.
    And there is no advantage in doing that since I'm still using a 16 by 9 window and getting the file size that goes with it.
    So if I want to work in a 3 by 4 format then the Standard 48kHz format it the only option.
    Well at least I know what to do next time.
    That should save a lot of time.
    I may just give up and go to 16 by 9 and quit fighting it.
    Thanks again.
    Mike
    >

  • Trouble with Frame Size of AE Composition in Premiere CS6

    I'm trying to add a name-bar (name-tag) from After Effects to my sequence in Premiere Pro. I built the name-tag in Illustrator according to the frame size in Premiere.
    All of my name tags for a 640x480 frame fit perfectly. However, the tags I built for a 720x480 frame appear way, way too large. I can't figure out why. Below is an example of the issue I've been having:
    As you can see, the bar on the bottom extends beyond the frame -- but I built it to be the same 720x480 frame size as the video clip.
    So, without further adieu...help me. Please.

    Alright, (sorry for the delayed response) here are the settings for the AE composition:
    And there Sequence Settings:
    And the video properties (2 images):
    I hope this helps you help me.

  • FCP- DVDSP sequence settings. frame size

    Question of sequence settings. when making a DVD, will the sequence setting, Frame size make a difference?
    We are just starting to edit a documentary, which uses alot of still photos and graphics. The rest of the video is shot on DV. I have tried laying still photos on the DV sequence, but it looks like still photos look really compressed and blurry. Not so good quality wise. If I set it to CCIR 601-NTSC, the photos look super good. We are NOT outputting any digi-beta uncompressed, but only to DVD.
    I am editing sequence in NTSC DV, but thinking of just before getting outputting with compressor, I am thinking of changing to uncompressed sequence CCIR 601-NTSC, and then compress it to MPEG2. (doing this later so that i can do alot of edits RealTime and worry about picture quality later) of course the picture size does get smaller... I don't really know the effect of this on a teleframed television.
    Will that make a difference? Seems that if I go through DVcompression AND MPEG2 compression, both, is more compression than MPEG2 compression itself. Is there a site that talks about it?
    Thanks in advance.
    Lost

    I only have "a bit" of experience working with stills in a DV sequence. But one thought concerns how you are integrating the stills and the video. I assume you are going to pretty much intermix the stills and the video and audio (interviews or whatever) that may go with video and stills.
    The DVD format, of course, supports stills as a slide show directly, but this will not accomplish the intermix very effectively.
    As far as size-quality, you may want to import the stills are larger than DV image size and then pan across them, etc.
    At the end of the day, to achieve a seamless edit job, you are probably going to need to have all the stills sitting on a regular DV timeline for export / encoding to MPEG2.
    I honestly do not put much stock in the differences between viewer and canvas. I always use an external NTSC monitor to judge the final appearance. I started with a cheap TV and recently upgrade to a nice JVC production monitor. This is the real measure of the final video, in my experience.

  • How do I set custom frame size in Premiere Pro 5.5 sequence.

    I need to set a custom frame size in Premiere Pro 5.5.
    I can't edit a preset so how do I create my own?

    If you realy feel 'lazy' or have no idea what settings to choose you can drag the clip the into the New Item icon. This will create a matching sequence.

  • How to change the picture frame size in Lightroom 5 Book

    I would like to control the actual picture frame size when making a Book in Lightroom 5. Or else know the sizes of the different picture frames provided by choosing the different page layouts. That way I can either change the picture frame dimensions to accomodate each photo or change the image size to fit in the offered picture frame. I find that using the software as is winds up cropping the images in unwanted ways. Modifying the picture frame would be my preferred alternative. Appreciate any ideas

    Hi again Tony,
                I have been using Adobe Photoshop 7, Photoshop Elements, Perfect Photo Suite, Photo Studio, etc., changing Image size, placing a picture on a page and then, do a simple last minute size adjustment by using the arrows to stretch or shrink it in place. Things would be a lot simpler if I could do the same thing with the cells in Lightroom 5. Cell pad adjustments do not fill the bill.
    I think we’ve pretty much concluded this exchange. Thanks again for your effort.
        david
    ay [email protected]
    Sent: Wednesday, March 12, 2014 11:27 PM
    To: dgbrow
    Subject: How to change the picture frame size in Lightroom 5 Book
    Re: How to change the picture frame size in Lightroom 5 Book
    created by Tony Jay <http://forums.adobe.com/people/Tony+Jay>  in Photoshop Lightroom - View the full discussion <http://forums.adobe.com/message/6205206#6205206

Maybe you are looking for

  • StorEdge 3510 FC Array Transport/Hard Errors

    We have a StorEdge 3510 connected to a V440 running Solaris 9. /var/messages indicates no errors however iostat -e shows hard and transport errors that increment continuously. If I access the controller on the 3510 I can see transport errors when I l

  • Location of JNet TypeRepository

    Hi, I would like to use the UI element Network (JNet API). To define the elements of the type repository your can create a file called "TypeRepository.xml", and provide a link to this file in the data file using the attribute "href" of the tag "TypeR

  • Hyperion Financial Reports:Getting member selection from prompt

    Hello everybody, I've a doubt on getting the member selection in GRID 2 from the prompt value set in GRID 1. Can anyone help me out??? Regards, Revathi

  • PSE 11 and ACR version

    I run PSE 11 and ACR Ver. 7.4. Also, have LR 4 and have yet upgraded to LR 5. My question is this:  Adobe indicates Camera Raw 8.1 is available for PSE 11. I have been checking Help>Updates and am informed that this Camera Raw update (8.1) is not ava

  • Where to install free Bridge CC included with PS and Lightroom Bundle?

    I paid for one year subscription to PS Photographers CC and Lightroom bundle.... I understand a free full version is included...from where do I install it?  I AM NOT referring to the free trial.