Round Trip problems with FCP, Motion and 16:9

Hello all-
I've been having some problems with FCP5 and Motion 2. I am working with anamorphic footage (mini dv), and my problem lies in trying to use the "send to" feature in FCP to Motion 2. If I send some footage to Motion 2, edit it, and then go back to FCP to look at my edit, the anamorphic flag has been removed... the video is squished and there are black bars on the right and left sides of the film. I can easily fix this if I find the clip in the FCP browser and check the anamorphic flag, then drag and drop that clip over the original in the sequence, but I was wondering if there was an easier way. Is there a way to make it be anamorphic when it comes back into FCP from Motion 2?
Thanks!
Dual 1.8 G5/2GB & 12 PB G4/1.25GB   Mac OS X (10.4.4)  

Yes, it loses the anamorphic flag on round trip. Just
ctrl/right-click on the Motion project in your
timeline, select Properties/Format and click on the
anamorphic setting column.
Patrick
Patrick-
Thanks for the reply. That's exactly what I've been doing, but I was just wondering if this was an actual bug or not. I guess we will have to wait for Apple to fix it...
BTW- Whenever I check the anamorphic culumn, I always have to re-drag and drop the clip in the timeline again. Is this right? Or should it go ahead and change it in the timeline automatically?
Thanks again!
Dual 1.8 G5/2GB & 12 PB G4/1.25GB   Mac OS X (10.4.4)  

Similar Messages

  • Intermittant problems with slow motion and crash of Premiere Pro

    Many complain about Premiere Pro's instability.
    Since a couple of days I have the same problem. Every time I want to navigate from A to B, Adobe seems to either introduce a severe SLOW MOTION effect on it's own accord, that I never put in !!!, or it just CRASHES with an error message along the lines "Problem, Try again" or similar.
    This is utterly frustrating !!! I have been trying for over 6 hours today to get this remedied, but no luck.
    Looking back over the past days, the problems seem to have grown exponentially both in frequency and in duration.
    Of course, this is not about the program, but about the Premiere Pro Forums.
    Is there a 300-day refund period for Jives???
    I suggest you use that opportunity Adobe. This is

    OK, that makes sense.
    OS: Vista 64 Business
    Browser: Firefox 3.5.2 and IE 8.06
    Symptoms:
    1. The connection has been reset, try again. Often after 15 minute waits.
    2. Nothing happens, just waiting for Adobe and even after 30 minutes, still waiting.
    3. After posting, nothing happens. You press the post button, nothing for ages. You press Cancel, nothing.
    4. All other pages load without problems and are responsive.
    5. Top participants listing and most popular discussions are not displayed.
    Do you need further information?

  • Problem with FCP 7 and IMAC

    Recently loaded FCP 7 on new Apple IMAC, in fact on several IMACs. Most work fine, but on the one there is a problem.
    If you open FCP first time, it opens fine. However, once you close it and try to reopen it, it gets part way then quits, crash's, whatever. To get it to open again you have to go to the users library, preferences, and delete the three preference files in the Final Cut User Data folder. Then FCP opens. Hassle because you need to reset all the defaults.
    What gives? Anyone else see this problem?
    Mike

    You could try Repair Permission in Disk Utility and relaunch FCP.
    BTW, here a reason not to double post:
    It is confusing and unnecessary
    http://discussions.apple.com/thread.jspa?threadID=2756074&tstart=0

  • Problem with FCP 7 and Apple IMAC

    Recently loaded FCP 7 on new Apple IMAC, in fact on several IMACs. Most work fine, but on the one there is a problem.
    If you open FCP first time, it opens fine. However, once you close it and try to reopen it, it gets part way then quits, crash's, whatever. To get it to open again you have to go to the users library, preferences, and delete the three preference files in the Final Cut User Data folder. Then FCP opens. Hassle because you need to reset all the defaults.
    What gives? Anyone else see this problem?
    Mike

    David's link simply points out there is a duplicate post.
    To the OP, if you have multiple licenses and are having installation issues, call Apple care. You get free 30 day support for installation problems.
    If you are trying to install one license on multiple machines, you are on your own as this is basically illegal.
    x

  • Problem with demo : Round-Tripping XML with Oracle9i

    Hi,
    We have recently installed a 9.2.0.1.0 database with the intention of trying some of the new XMLTYPE samples.
    I downloaded the demo : Round-Tripping XML with Oracle9i.
    The first part, Mapping XML into Oracle9i, worked fine.
    The second part, Re-composing XML from Oracle9i, doesn't seem to run.
    Here is what I get i SQLPLUS :
    (Step 1 to 15 is OK)
    SQL> create or replace type PURCHASEORDER_TYPE as object
    2 (
    3 "Reference" VARCHAR2(64),
    4 "Actions" SYS.XMLTYPE,
    5 "Requester" VARCHAR2(48),
    6 "User" VARCHAR2(32),
    7 "Reject" PURCHASEORDERREJECTION_TYPE,
    8 "CostCenter" VARCHAR2(3),
    9 "Vendor" VARCHAR2(32),
    10 "PONumber" NUMBER(10),
    11 "ShippingInstructions" PURCHASEORDERSHIPINST_TYPE,
    12 "SpecialInstructions" VARCHAR2(2048),
    13 "LineItems" SYS.XMLTYPE
    14 );
    15 /
    Type created.
    SQL> --script 16
    SQL> create or replace view PURCHASEORDERDOCUMENTS as
    2 select P.REFERENCE,
    3 sys_xmlgen(
    4 PURCHASEORDER_TYPE(
    5 P.REFERENCE,
    6 (
    7 select
    8 sys_xmlagg(
    9 sys_xmlgen(
    10 PURCHASEORDERACTION_TYPE(
    11 A.ACTIONEDBY,
    12 A.DATEACTIONED
    13 ),
    14 sys.xmlgenformattype.createFormat('Action')
    15 )
    16 ).extract('//Action')
    17 from PURCHASEORDERACTIONS A
    18 where A.REFERENCE = P.REFERENCE
    19 ),
    20 P.REQUESTER,
    21 P.USERID,
    22 PURCHASEORDERREJECTION_TYPE(
    23 R.REJECTEDBY,
    24 R.DATEREJECTED,
    25 R.COMMENTS
    26 ),
    27 P.COSTCENTER,
    28 P.VENDOR,
    29 P.PONUMBER,
    30 PURCHASEORDERSHIPINST_TYPE(
    31 S.SHIPTONAME,
    32 S.ADDRESS,
    33 S.PHONE
    34 ),
    35 P.SPECIALINSTRUCTIONS,
    36 (
    37 select
    38 sys_xmlagg(
    39 sys_xmlgen(
    40 PURCHASEORDERLINEITEM_TYPE(
    41 L.LINENO,
    42 L.DESCRIPTION,
    43 PURCHASEORDERPART_TYPE(
    44 L.PARTNO,
    45 L.QUANTITY,
    46 L.UNITPRICE
    47 )
    48 ),
    49 sys.xmlgenformattype.createFormat('LineItem')
    50 ),
    51 sys.xmlgenformattype.createFormat('LineItems')
    52 )
    53 from PURCHASEORDERLINEITEMS L
    54 where P.REFERENCE = L.REFERENCE
    55 )
    56 ),
    57 sys.xmlgenformattype.createFormat('PurchaseOrder')
    58 ) "PODOCUMENT"
    59 from PURCHASEORDERSTORE P,
    60 PURCHASEORDERREJECTION R,
    61 PURCHASEORDERSHIPINSTRUCTIONS S
    62 where R.REFERENCE = P.REFERENCE
    63 and S.REFERENCE = P.REFERENCE;
    View created.
    SQL> --script 17
    SQL> set heading off;
    SQL> set wrap on
    SQL> set pagesize 10000;
    SQL> set long 10000;
    SQL> select P.PODOCUMENT.getClobVal() from PURCHASEORDERDOCUMENTS P;
    select P.PODOCUMENT.getClobVal() from PURCHASEORDERDOCUMENTS P
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 1
    Has anyone had the same problem ?? I would appreciate any suggestions.
    Thanks,
    Frank

    I found the solution :
    The database was running with a multibyte characterset (UTF8).
    After changing that to WE8ISO8859P1 everything worked fine.
    It is strange that Oracle suggest to use UTF8 when installing the new database (9i)
    and on the other hand doesn't support multibyte charactersets for several of the XML-products.
    Cheers,
    Frank

  • Rendering and lagging problems with FCP  X

    Hello,
    I am working on a  Mac OS X Lion 10.7.3 (11D50b) -  Processor  2.4 GHz Intel Core i5 - Graphics  NVIDIA GeForce GT 330M 256 MB and Memory  8 GB 1067 MHz DDR3.
    My 30 minute project has been completed but every time I reopen it, there is a short sequence that always needs rendering. It takes a very long time for this sequence to render and FCP X regularly crashes and slows down. The software is very slow and sometimes non responsive.
    This is my first try with FCP X. I've been working with FCP 6 and changed to FCP X recently. I’ve imported a lot of jpg and mp4 files. I import with proxy and optimized files and analyzed preferences. I’ve tried running my project with my hardrive as well as my external hardrive.
    FCP X is generally lagging and unstable. It also slows down my computer.

    mp4 files. I think that is not a good idea to use that format with FCPX. With my camera I have the options to use mov. (native for FCPX) or mp4. I use mov.

  • PCU usage difference with FCP 6 and FCPX

    So can anyone help me understand this...
    I export a ten minute video in FCP 6.0.6 and it takes 3 minutes...using 3 % of PCU
    Then I export same 10 minute video from FCPX and it takes about 12 minutes and uses 63% of the CPU....
    this issue is driving me crazy...why do things take longer with FCPX...is there something in the software that using the computers hardware differently than final cut studio does????

    If you read back through some threads (not far) you will see that FCPX and Motion 5 don't work the same as FCP6 and Motion 3 - i.e. they do not round-trip.
    If round-tripping is essential in your workflow stick with FCP 6 and Motion 3.
    If you want to use Motion 5 they can be installed alongside each other, just follow the guidelines for better working - http://support.apple.com/kb/HT4722?viewlocale=en_US
    You can output movies from Motion 5 with transparency and just import into FCP.
    Alan

  • Problem with Video Capture, and question towards solution

    Yesterday I worked on a commercial for which we captured 9 clips (roughly 10 seconds or shorter in length). The clips all had text/titles superimposed on them by an outside machine and looked good in the monitors when they were exported and captured into FCP (ie: none of the text was chopped off).
    I edited the commercial and then was exporting it out, only to discover that the text on the bottom of the clips was getting chopped off.
    My first question is this: is there some setting in the capture process that could have done this? something that might have gotten tweaked accidently, or corrupted in some manner? Didn't have this problem with footage captured the previous day. And since it looked good before it was put into FCP, thinking it had to be a problem with FCP.
    Also, in trying to tweak the footage in FCP, I came across a 'there must be an easier way to do it' question. Is there a way to alter parameters on multiple clips (such as raising them, like I had to)? I tried selecting all and double clicking, hoping that the changes I made would affect them all, but it only affected the one I directly clicked. I'm sure there's something simple (and obvious) that I'm overlooking...
    thanks!

    For how and why this could have happened, would you mind sharing your capture and sequence settings?
    As far as applying parameters to multiple clips, I think you can make use of the Paste Attributes function in FCP...
    Alter one of your problematic clips
    Select that clip in the Timeline, then press Command-C (or control-click and choose Copy from the contextual menu)
    Select the remainder of your problematic clips
    With your clips selected press Option-V (or control-click on one of them and select Paste Attributes from the contextual menu) to bring up the Paste Attributes dialog
    Select Basic Motion - under the Video options, on your left-hand side - then click OK
    (Basic Motion because, if I understand your solution correctly, you altered the Center property - either in the Motion tab of the Viewer or manually in the Canvas - of your clips. You nudged them all up a bit, right? If you did, then that would fall under the Basic Motion attribute.)
    All your selected clips should be nudged up appropriately.
    But, again, I'm making a bit of leap since I'm not entirely sure what caused your issue in the first place.

  • Problem with Nokia Camera and Smart Sequence

    Hi,
    I'm having a problem with Nokia Camera and the Smart Sequence mode.
    Basically, if you take a picture using nokia camera, and view it in your camera roll, it usually says, underneath the pic "open in nokia camera".
    Well, if I take a pic using the Smart Sequence mode, it just doesn't say "open in nokia camera" so, to use the functions of smart sequence (best shot, motion focus, etc), I have to open nokia camera, go to settings and tap the "Find photos and videos shot with nokia camera" option.
    Does anyone has the same problem? Anybody solved it?
    I already tried reinstalling nokia camera, but that didn't help.
    I'm running Nokia Black on my 925.
    Thanks everyone!

    Hi,
    I had the same problem with my 1020. It did get fixed with the last update to Nokia camera.
    However, IIRC, it didn't just happen right away. When browsing the camera roll I'm pretty sure that the "open with Nokia camera" text wasn't there.
    Slightly disappointed I opened the (Nokia) camera anyway and was going to test the smart sequence again. I noticed the only precious pic I'd taken using this actually appeared top left of the screen.
    I opened it and I had all the smart sequence editing options again - that we're missing previous. Made a new picture and saved it.
    Now when in camera roll the text shows below the image and all is good.
    This probably doesn't help much except that it didn't seem to fix automatically.
    I work @Nokia so I can ask around a bit to see if this is a known / common issue (not that I know any developers)

  • Has anyone had a problem with fcp x not playing back a project since installing 10.0.9 update?

    Has anyone had a problem with fcp x not playing back a project since installing 10.0.9 update?

    Not here;  updated three systems without issues.
    Can you provide more details on your system specs, the projects you're referring to, and what kind of behavior you're encountering?
    Russ

  • Problems with ListViews Drag and Drop

    I'm surprised that there isn't an Active X control that can do this more
    easily? Would
    be curious to find out if there is - although we aren't really embracing the
    use of
    them within Forte because it locks you into the Microsoft arena.
    ---------------------- Forwarded by Peggy Lynn Adrian/AM/LLY on 02/03/98 01:33
    PM ---------------------------
    "Stokesbary, Michael" <[email protected]> on 02/03/98 12:19:52 PM
    Please respond to "Stokesbary, Michael" <[email protected]>
    To: "'[email protected]'" <[email protected]>
    cc:
    Subject: Problems with ListViews Drag and Drop
    I am just curious as to other people's experiences with the ListView
    widget when elements in it are set to be draggable. In particular, I am
    currently trying to design an interface that looks a lot like Windows
    Explorer where a TreeView resides on the left side of the window and a
    ListView resides on the right side. Upon double clicking on the
    ListView, if the current node that was clicked on was a folder, then the
    TreeView expands this folder and the contents are then displayed in the
    ListView, otherwise, it was a file and it is brought up in Microsoft
    Word. All this works great if I don't have the elements in the ListView
    widget set to be draggable. If they are set to be draggable, then I am
    finding that the DoubleClick event seems to get registered twice along
    with the ObjectDrop event. This is not good because if I double click
    and the current node is a folder, then it will expand this folder in the
    TreeView, display the contents in the ListView, grab the node that is
    now displayed where that node used to be displayed and run the events
    for that as well. What this means, is that if this is a file, then Word
    is just launched and no big deal. Unfortunately, if this happens to be
    another directory, then the previous directory is dropped into this
    current directory and a recursive copy gets performed, giving me one
    heck of a deep directory tree for that folder.
    Has anybody else seen this, or am I the only lucky one to experience.
    If need be, I do have this exported in a .pex file if anybody needs to
    look at it more closely.
    Thanks in advance.
    Michael Stokesbary
    Software Engineer
    GTE Government Systems Corporation
    tel: (650) 966-2975
    e-mail: [email protected]

    here is the required code....
    private static class TreeDragGestureListener implements DragGestureListener {
         public void dragGestureRecognized(DragGestureEvent dragGestureEvent) {
         // Can only drag leafs
         JTree tree = (JTree) dragGestureEvent.getComponent();
         TreePath path = tree.getSelectionPath();
         if (path == null) {
              // Nothing selected, nothing to drag
              System.out.println("Nothing selected - beep");
              tree.getToolkit().beep();
         } else {
              DefaultMutableTreeNode selection = (DefaultMutableTreeNode) path
                   .getLastPathComponent();
              if (selection.isLeaf()) {
              TransferableTreeNode node = new TransferableTreeNode(
                   selection);
              dragGestureEvent.startDrag(DragSource.DefaultCopyDrop,
                   node, new MyDragSourceListener());
              } else {
              System.out.println("Not a leaf - beep");
              tree.getToolkit().beep();
    }

  • Problems with Customer Service AND unexplained charges!

    I've been with Verizon for I-don't-know-how-many years, and through the years you are bound to have a few problems here and there but some of the problems are just ridiculous! It's also the same reocurring problem!!!!!!!!!!!!!!!! I was with Alltel first, before it was bought out by Verizon. The years I was with Alltel, I didn't have near as many problems. It seems EVERY time I do the smallest change or something to my phone or bill, I get a ridiculous amount of charges that I was NOT aware of, nor told about... EVEN IF I ask "So this isn't going to change my bill, or there will not be any unexpected/unexplained charges that I don't know about?"... BUT not matter how many times I ask... and NO matter how many times I am told "no"... there always is. For example.... last year, I updated and signed a new 2 year contract and purchased the first Driod. Before, my 30 day warranty was up, I was having problems with my Driod, and decided to send it in and get a new one. Before I did this.. I called customer service to make sure there would be no interuption in my bill, and there wouldn't be any unexpect charges, and there would be no difference in anything. I was told there was not, and once I recieved my new phone, just send it in and nothing would be changed. Of course, when I get my bill.. I see I was charged $500 for the new phone. It was explained to me that my credit card was reimbursed (which I never check that card, because I never used it expect to purchase the phone) and that I was recharged for the new phone, since it was a new phone. So I had to fork out the $500 (on top of my bill) and then wait months to get the $100 rebate card. Months after that, I "assumed liablity of my line" because I was on a plan with my family. I decided to have my own line, so I "assumed liability." I was not told that when I did that, I "renewed" my contract date. So I just added 6 more months to my 2 year contract. Was NOT told about that! Then again...... I was recently having problems with my Driod (the screen went black and would not come back on.) I had to turn on an OLD motorola razor, so I would not be without a phone for two days while I was waiting on my phone to come in. As soon as my phone came in, I had my Droid turned back on. I recieved my bill recently, and my bill was $200 over what it normally should be.... so I called in... apparently, when I had my phone replaced, they dropped off my data package and when I recieved my replacement driod, they never put it back on. So I was being charged for alllll my data usage... again I was NOT told about this. I wasn't even aware that they had dropped off my data package, and when/where did they get the authority to do that??? These are just a FEW of the problems that I have had.................................
    Does anyone have these reoccuring problems!?

    I understand that my bill can be viewed online, and I do view it fairly regularly, so if there are any unexplained charges, I can call Verizon asap. The problem does not come from me not understanding my bill, but from customer service. I have been with Verizon for a very long time, and it is a continuing problem. Where did Verizon get the 'OK' to drop my data package off my plan? Who authorized that?
    After calling Verizon and trying to find out the problem, the gentleman told me that when I activated on old phone while I was waiting on my new Droid to arrive, my data package was dropped off and I "should" have been told about that. When I reactiviated my new Droid, I "should" have called and had them restart my data package. I was not aware that when you activate an old phone that data plan is taken off your plan. In all my years of having cell phones, I never make two years with one phone. I have always, at one point, had to turn on an old phone, and my data package has NEVER changed. Why would I have my data package dropped and why would I have to call Verizon to have it restarted. I would never know to do that unless I was TOLD that my data packaged HAD to be re-added when I recieved my new phone, but I was never told of that.
    All of that is beside the point, the point is, Verizon was never given the authorization to change my plan. Never. My bill was taken care of and readjusted, and I am thankful for that. It does not change the fact it is always a hassle with Verizon Customer Service and I am always the one having to PROVE that I am not at fault, or that I was NEVER told of certian things. EVERY TIME I HAVE CALLED CUSTOMER SERVICE, I AM TOLD "I'M SORRY, THEY SHOULD HAVE TOLD YOU THAT."
    "they should" does not help my bill with the extra armount of charges.

  • Problems with dropped calls and no reception on Samsung Continuum

    My mother and I both purchased a Samsung Continuum in late March 2011, and have experienced the same problems with the phone.  The device drops at least 2-3 calls per day, often on the same conversation; we have not found that location or time of day makes a difference.  The phone freezes up frequently, even if no apps are running in the background.  We lose our 3G network reception frequently, and cannot access our texts, emails, or the internet.  The screen saver kicks in even when we are actively dialing a number, or typing in a text message.  The overall performance of the phone is also poor, and it is quite slow much of the time.
    We have raised this issue several times with a representative at one of the Verizon stores, but he states that he can find no problem with the phone, and that these issues may not be covered under our insurance plan.  None of my friends with non-Samsung phones are having the same problems with phone reception and performance.  I am aggravated enough with these issues that I am considering reactivating my old Blackberry, which worked like a charm.
    I am not upset that my phone has not been updated to Android 2.2.  I just want the phone to perform as stated, and not fail at its primary function:  making and receiving phone calls.  I am not certain if these problems originate with the phone, Verizon, or Samsung, nor do I care.  I just want to resolve these issues as soon as possible, or I will have to look at other alternatives.
    Thank you.

    If this doesn't work...now what??? I have a useless $400 plus piece of unreliable junk. My Motorola Razor was ions more reliable than this phone...very, very sad but true.
    What carrier were you using with the Razor? AT&T? Same area?
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Problems with Mail, Safari and iTunes after updating to 10.5.6

    Hi all,
    after installing 10.5.6 I have problems with Mail, Safari and iTunes.
    The time to open mails, websides and iTunes store is increasing dramatically since the update. If I open a webside parallel with Safari and Firefox, Safari needs minimum 15 times longer to open the complete side. Mails containing HTML-code also needs a long time to be opened. Tha same Problem with iTunes store. Connecting to the Store costs at least 30 - 40 seconds. And unfortunately for every iTunes store side I open. Its terrible
    Any idea or workaroung to solve that problem?
    Regards
    Michael

    First, run Disk Utility and repair permissions and then restart.
    I installed the 10.5.6 Combo update. Sometimes things get "lost in the translation" when you use Software Update depending on your installation. Perhaps you can download 10.5.6 Combo from the website and install it from your desktop.

  • Problems with the richTextEditor and quotes

    Hello
    I'm having problems with quote chars and the richText
    control's htmlText. When users enter quotes into the richTextEditor
    control. The quotes breaks the HTML text, meaning it's no longer
    well formatted. Is there an escape char that I need to use. Or do I
    need to force some kind of refresh on the control prior to using
    the htmlText string?

    I have been using RTE in a content management system and
    found a need to replace non-standard quote characters with proper
    UTF-8 character counterparts. Curly quotes in particular are
    problematic. Use a replace function to substitute non-standard for
    standard characters.

Maybe you are looking for

  • Events limit can only be dates between 1 and 9 on the day field

    Im an student, and im trying to put my timetable into ical as did last year it goes ok, i set it up to repit every week mondays lessons for example but when i am trying to set up a limit for this event to repit itself ical only allows me to put a dat

  • Script to automatically enter document metadata

    I need to enter document info as metadata into all of my Indesign documents as they are posted on the web as pdf docs so I wanted a script that would automaticaly enter the data once the document has been saved. I only need 3 fields to be filled. My

  • Measure plsql execution time

    Hello dear teachers, i would be gratful for advice. I have materialized view that is refreshed with the dbms_mview procedure and it's scheduled through dbms_job. How could i measure that refresh execution time so i can for example query one table and

  • BPC NW Installation - MSMQ Setup

    Hi Experts We are in process of BPC NW installation. One of the prerequisites for BPC installation in MSMQ installation. The installation guide says, MSMQ needs to be installated with domain controller rights and option of "Active Directory Integrati

  • Conversion of datetime

    Hi, i have a column with varchar(26) with values like '2002-09-05-14.23.32.818819'. I need to change it to datetime2(7) of this value. When i use CAST or CONVERT function, it is throwing error says out of range values. Is there any way to change the