Can't work it out

My workflow
DV PAL 4:3 into DV sequence 4:3 (using H264) Compression Setting. I'm using that because I'm adding some supers which look awful if the DV compression is on.
Adding text, and moving some images around in simple motion.
Then I export QT, then into DVD Studiopro, burn DVD, but DVE moves are jittery (field reversed?) though regular footage is OK, where am I going wrong?
Thanks in advance.

steve shadforth1 wrote:
I don't want to use compressor, can I go straight into dvd SP instead using same suggestion?
No.
Wait, you mean you prefer bypassing the H.264 conversion? You can't bring H.264 into DVDSP.
Wait, you want to bypass the transcoding out of FCP? Then, yes, you can take the output of FCP directly into DVDSP and let DVDSP handle the MPEG2 encode but, for many reasons, it's generally a better idea to use Compressor. Gives you more control.
bogiesan
Message was edited by: David Bogie Chq-1

Similar Messages

  • I have a macbook air and I can't cut and paste in itunes.  The right clic does not work. How can I work this out?

    I have a macbook air and I can't cut and paste in itunes.  The right clic does not work. How can I work this out?

    Great tip Stephen!!
    I was so frustated from this issue that I used to use Windows iTunes for mass editing info, adding Lyrics etc and then transfering songs to Mac. This tip has alleviated my pain!!
    Thanks for the tip. This question should be tagged as answered.

  • I have Pages 09 and I have  created a business card using the template but can't figure out how to duplicate it to the other 9 on the page Am and sure I am going to look daft coz its only the click of a button but I can't work it out Thanks

    I have Pages 09 and I have  created a business card using the template but can't figure out how to duplicate it to the other 9 spaces on the page. I am and sure I am going to look daft coz its only the click of a button but I can't work it out Thanks

    I do the following: Hold down the command key and highlight all the items to be reproduced. Then hold down option and drag the items from the first to each subsequent card.

  • Something trivial but I can't work it out :/

    Okay basically, I want my buttonOval to draw an oval for me. Here is my code:
    import java.awt.*;                                                  //Import all the classes within the abstract windows toolkit
    import java.applet.*;                                                  /Import applet class
    import java.awt.event.*;
    import java.awt.Graphics.*;
    public class Shapes extends Applet implements ActionListener
         Button buttonOval, buttonRectangle;                              //Declaration of button variables
         Font fontVerdana;                                        //Declare fonts
         TextField textx, texty, textwidth, textheight, areatext;          //Declare text fields
         Label labelx, labely, labelh, labelw;                              //Declare label fields
         int x;                                                       //Declare variable x asinteger v
         int y;
         int height;
         int width;
         int area;
         double pi = 3.14;
         public void init()
              setSize(800,500);                                                       //Size of the applet viewer
              setBackground(Color.yellow);
              fontVerdana = new Font("Verdana", Font.BOLD,10);                //Set the font
              labelx = new Label("Enter in the x co-ordinate here:");          //Declares a new label
              labelx.setBackground(Color.yellow);                                   //Background colour becomes yellow
              labelx.setFont(fontVerdana);                                        //Label prompt uses the Verdana font
              add(labelx);                                                            //Add prompt to the applet
              textx = new TextField(1);                                             //Declares a textfield for input
              add(textx);                                                                 //Adds the textfield to the applet
              textx.setForeground(Color.white);                                   //Textfield font becomes white
              textx.setBackground(Color.black);                                   //Textfield background colour becomes black
              textx.addActionListener(this);
              labely = new Label("Enter in the y co-ordinate here:");
              labely.setBackground(Color.yellow);
              labely.setFont(fontVerdana);
              add(labely);
              texty = new TextField(1);
              add(texty);
              texty.setForeground(Color.white);
              texty.setBackground(Color.black);
              texty.addActionListener(this);
              labelw = new Label("Enter in the width here:");
              labelw.setBackground(Color.yellow);
              labelw.setFont(fontVerdana);
              add(labelw);
              textwidth = new TextField(1);
              add(textwidth);
              textwidth.setForeground(Color.white);
              textwidth.setBackground(Color.black);
              textwidth.addActionListener(this);
              labelh = new Label("Enter in height here:");
              labelh.setBackground(Color.yellow);
              labelh.setFont(fontVerdana);
              add(labelh);
              textheight = new TextField(1);
              add(textheight);
              textheight.setForeground(Color.white);
              textheight.setBackground(Color.black);
              textheight.addActionListener(this);
              areatext = new TextField(20);
              areatext.setEditable(false);
              add(areatext);
              areatext.addActionListener(this);
              buttonOval = new Button("Draw Oval");
              buttonOval.setForeground(Color.white);
              buttonOval.setBackground(Color.black);
              add(buttonOval);
              buttonRectangle = new Button("Draw Rectangle");
              buttonRectangle.setForeground(Color.white);
              buttonRectangle.setBackground(Color.black);
              add(buttonRectangle);
              buttonOval.addActionListener(this);
              buttonRectangle.addActionListener(this);
         public void paint(Graphics g)
              g.drawOval(x, y, width, height);
              g.drawRect(x, y, width, height);
         public void actionPerformed(ActionEvent ev)
              if (ev.getSource() == buttonRectangle)
                   x = Integer.parseInt(textx.getText());
                   y = Integer.parseInt(texty.getText());
                   width = Integer.parseInt(textwidth.getText());
                   height = Integer.parseInt(textheight.getText());
                   area = width * height;
                   areatext.setText("The area is = " + area + "cm�");
                   areatext.setEditable(false);
              else if (ev.getSource() == buttonOval)
                   x = Integer.parseInt(textx.getText());
                   y = Integer.parseInt(texty.getText());
                   width = Integer.parseInt(textwidth.getText());
                   height = Integer.parseInt(textheight.getText());
                   area = width * height;
                   areatext.setText("The area is = " + area + "cm�");
                   areatext.setEditable(false);
    I've used the paint method to set out the oval attributes 'g.drawOval(x, y, width, height' and I've declared all the integers and got the integer results from the textfields in which the integers are entered 'x = Integer.parseInt(textx.getText());'
    but when I click the buttonOval I want it to draw the oval which is defined in the paint method. Any ideas how I can do this? As plus, it would be great if someone could tell me how to implement the area of an oval too. :D
    I do apologise if this sort of thread has been posted before! Thank you for any help I appreciate. :)
    Have a good day,
    Jay

    I've ried to compile the following but no luck...
    Boolean ovalYes, rectYes;
    then in the paint method...
    public void paint(Graphics graf)
              if buttonOval = ovalYes
                   graf.drawOval(x,y,width,height);
              else if buttonRectangle = ovalYes
                   graf.drawRect(x,y,width,height);
    then in the actionPerformed method...
    public void actionPerformed(ActionEvent ev)
              if (ev.getSource() == buttonRectangle)
                   x = Integer.parseInt(textx.getText());
                   y = Integer.parseInt(texty.getText());
                   width = Integer.parseInt(textwidth.getText());
                   height = Integer.parseInt(textheight.getText());
                   repaint(rectYes);
                   area = width * height;
                   areatext.setText("The area is = " + area + "cm�");
                   areatext.setEditable(false);
              else if (ev.getSource() == buttonOval)
                   x = Integer.parseInt(textx.getText());
                   y = Integer.parseInt(texty.getText());
                   width = Integer.parseInt(textwidth.getText());
                   height = Integer.parseInt(textheight.getText());
                   repaint(ovalYes);
                   area = width * height;
                   areatext.setText("The area is = " + area + "cm�");
                   areatext.setEditable(false);
    It doesn't work. :s

  • How do I view my pictures and videos on iCloud can't work it out

    I'm struggling to work out how to log in and view items on iCloud help please

    You can't view them on icloud.com, if that's where you are looking.  You can only view them on the web if they are added to a shared stream with the public website option enabled (see http://help.apple.com/icloud/#/mmc0cd7e99).  That will give you a private url to view them from a computer browser.

  • Ok, so clearly i'm a bit dim, but I just can't work it out.

    When I opened my brand new 8gb black ipod nano, in the small but perfectly formed plastic case were a few items, usb cable, manual, headphones etc but also there is a white plastic thing with a hole in that almost seems the same size as the ipod end of the USB cable.
    Am I some how meant to be able to use this piece of white plastic as a stand or something or is it merely just part of the packaging?
    Thanks

    I was baffled by this too. I can't find any mention of this mystery object on the product packaging, or the short manual in the box, or the PDF manual on this website. Lots of other gear comes with a simple but effective "what's in the box?" list. Is that too uncool for an iPod?

  • Can't work out what is wrong with my nano

    The 4th gen Ipod nano isn't recognised by itunes and doesn't turn on, when I try to turn it on it comes up with an hour glass and doesn't do anything else.I have tried reseting it and charging it overnight but I can't work it out. I bought it off ebay so I'm worried it could be fake as I havn't heard of a hourglass coming up on an Ipod and I cant find it when I search it on google.
    Does this happen to 'real' ipods?
    Thanks

    Hi Carnageboy
    Check the back of your iPod and you should see the serial number under the capacity label (it will be tiny text)
    Enter the iPod's SN into Apples Warranty checker to see if there is any warranty left:
    https://selfsolve.apple.com/GetWarranty.do
    If there warranty, then call Apple for support.
    Regards
    LG.

  • I just can't work it :(

    Hi
    I've had my ipod for ages now, and I mean a couple of years, but I don't use it 'cos I can't work it out at all
    I've had ordinary mp3 players in the past, no problem, just drag and drop the tracks onto it and you're away, but this itunes thing just confuses me.
    It has converted all my cds which were on the computer into itunes and when every I plug in the ipod it tries to put them all on
    Is there anyway I can pick and choose the ones I want on ... delete some or just get the ones I want onto it.
    any help much appreciated as this thing is just collecting dust in a drawer.
    thanks
    xx
    ps: its an ipod nano 2gb if that makes any difference

    newby12345 wrote:
    Can I not just skip the itunes thing and just drag the tracks on in the old fashioned way
    No.
    With your iPod connected, and selected under Devices, you should see the Summary page. You can check, "Manually manage music", which will allow you to drag things to the iPod's name in the device list. This is the closest you will get to the (cumbersome, in my opinion) "old fashioned way". You can also, on the second page (Music) choose the "Sync selected playlist" option then choose which of your playlists you want to sync. You can use smart playlist to choose music based on various choices (e.g. Last played is not in the last 10 days). Or you can use standard playlists.
    Best of luck.

  • I have paid for Creative Cloud - illustrator CC 1 year monthly plan, but it still show "Trial Expired". I have tried to sign in and sign out creative cloud many times, but still can't work. Please help!

    I have paid for Creative Cloud - illustrator CC 1 year monthly plan, but it still show "Trial Expired". I have tried to sign in and sign out creative cloud many times, but still can't work. Please help!

    Does your Cloud subscription show on your account page?
    https://www.adobe.com/account.html for subscriptions on your Adobe page
    Also,
    This is an open forum, not Adobe support... you need Adobe support to help
    Adobe contact information - http://helpx.adobe.com/contact.html
    -Select your product and what you need help with
    -Click on the blue box "Still need help? Contact us"

  • When I open iTunes it will automatically go to full screen mode. I can't work out how to turn this off. Only iTunes opens to full screen mode.

    When I open iTunes it will automatically go to full screen mode. I can't work out how to turn this off. Only iTunes opens to full screen mode.

    Go to System Preferences (under the Apple logo in the menu bar).  Choose "General".  Click "Always close windows when quitting an application".
    That should fix it.

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • I have a macbook pro and use BT homehub 3.  can't work out how to connect my time capsule. can anyone help, thanks.

    I have a macbook pro and use BT homehub 3.  can't work out how to connect my time capsule. can anyone help?  thanks

    Just need to plug the TC in to the hub in bridge mode.. do not try and bridge the homehub.. it is not possible with the setup BT uses.
    To bridge the TC.. plug it directly into a computer by ethernet.. no other connection to the TC or the computer.
    Press and hold in reset until the front LED flashes rapidly.. about 10sec.
    Release the reset.
    Open the airport utility and setup the TC to bridge mode.
    The actual method depends on version of the OS and airport utility you use.
    This is version 5.
    Sorry I cannot post the v6 as I am on a snow leopard computer now. But you go to the network tab, and choose off bridge mode for method of connection. It will be NAT and dhcp by default.
    Then setup wireless.. you have a number of choices here.
    Either setup with the same SSID Security and password, as the homehub uses.. or a different name, and password..
    Each method works fine.. but you sometimes have issues with wireless channels.. for now leave it on auto and see what happens.. if you have issues lock down the radio channels on both devices.. use one out of the following on each, 1, 6, 11 or 13 in UK.. so say 6 on the homehub then 13 onthe TC.
    Update the TC.. unplug fromt the computer and plug it into the homehub.
    If you have other issues with the setup tell us what OS you run so we can post suitable screenshots.

  • Can't work with Macbook mini-dvi adapter to s-video out under Windows..??

    hi..
    My macbook can work well with mini-dvi adapter to tv out under mac os,but it can't work under windows os..
    If anyone's using their Macbook and has any comments please let me know..
    Thanks.
    Richard

    Yes, if you can get an s-video cable and plug that into the SCART adapter, that would be better than plugging in composite video.
    Clearly, having an SCART connection is not going to "improve" the video going in, you're going to be limited by the lowest quality connection. An s-video connection will provide a higher (but probably not a lot) quality signal than composite video.
    -Doug

  • I prepare chronologies in word, and i am trying to do the same in pages using tables and cells. But somtimes i need a cell to wrap onto the next page but I can't work out how to do it - any suggestions would be greatly appreciated

    I prepare chronologies in word, and I am trying to do the same in pages using tables and cells. But sometimes I need a cell to wrap onto the next page because the contents are bigger than the page or the space left on the page,  but I can't work out how to do it - any suggestions would be greatly appreciated

    brendanfromsydney wrote:
    What are the different opinions on why pages should not achieve this?
    As far as I know, Apple is free to choose to offer this or that feature.
    They never said that they want to clone Word or even compete with it.
    Differences between tables in both worlds are numerous.
    In Pages (or Numbers)
    - we can't sort a single column
    - we can't sort by row
    - we can't insert or remove a single cell
    - a cell can't cross pages boundaries
    If I understand well these design choices match :
    ++-+-+-+-+-+-+-+-++
    Apple Human Interface Guidelines:
    Apply the 80 Percent Solution
    During the design process, if you discover problems with your product design, you might consider applying the 80 percent solution‚ that is, designing your software to meet the needs of at least 80 percent of your users. This type of design typically favors simpler, more elegant approaches to problems.
    If you try to design for the 20 percent of your target audience who are power users, your design may not be usable by the other 80 percent of users. Even though that smaller group of power users is likely to have good ideas for features, the majority of your user base may not think in the same way. Involving a broad range of users in your design process can help you find the 80 percent solution.
    +-+-+-+-+-+-+-+-+-++
    Yvan KOENIG (VALLAURIS, France) jeudi 9 juin 2011 16:03:52
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.7
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • My iPod 5th gen touch went through the washing machine. It still works but it has water in the screen and I can't get it out. I put it in uncooked rice for a day but it didn't work. And suggestions??

    My iPod 5th gen touch went through the washing machine. It still works but it has water in the screen and I can't get it out. I put it in uncooked rice for a day but it didn't work. And suggestions??

    Leave it in the rice for at least a day and change the rice every other day or so. The rice and iPod should be in a sealed container.
    Apple will exchange your iPod for a refurbished one for $149. They do not fix yours.
    Apple - iPod Repair price              
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit

Maybe you are looking for