Round trip workflow with proxies between Premiere and AE / a more general question about how these programs work?

Hi all,
I'm new to editing with proxies in Premiere and have some questions about how to handle the relationship with After Effects. Say I have a rough cut (with proxies) and I want to send it to AE to do some effects. The simplest thing to do seems to be to replace the proxies with the originals in Premiere, send the project to AE and do my thing. But if I then want to send the project back to Premiere, it will involve the original files, which are too machine-intensive for me to edit. In theory, it seems like there should be a way to send the project with original footage to AE, do effects, send it back to Premiere, and then replace it with proxies to do further editing while retaining the effects.
This leads to a confusion about how AE works. When I do an effect, am I correct in assuming that it does nothing to the original file? If that's the case, it seems like it shouldn't matter (in the editing stage) what file AE "applies" an effect to (proxy or original). But I feel like there's a hitch in this workflow. The same question could also be asked about going back and forth in Speed Grade.
Perhaps there is no real answer to this and the best option is to save effects and grading for after I have picture lock, but sometimes that's not entirely possible or convenient, etc.
Hopefully this makes some sense—It's a little hard to explain.
Thanks.

Hi Mark,
Here are the specific sections of the manual that should give you the best explanation regarding the Check out/in workflow for FCP projects in Final Cut Server:
Check out:
http://documentation.apple.com/en/finalcutserver/usermanual/#chapter=7%26section =5
Editing:
http://documentation.apple.com/en/finalcutserver/usermanual/#chapter=7%26section =6
Check in:
http://documentation.apple.com/en/finalcutserver/usermanual/#chapter=7%26section =7
-Daniel

Similar Messages

  • General Question about how to encrypt-decrypt and Digital signatures

    Hi,
    We're developing classes for encrypting and signing a txt message and for decrypting and validating the signature of the message. Everything works properly but I have several questions, they're not about code:
    1st We're encrypting the message following this way:
    -generating a number which is gonna be the password
    -encrypting the message in AES with this password
    -encrypting the with the public certificate of the receiver the password
    -We pack everything, encrypted message+ encrypted password in a File with public key of the receiver.
    The questions we have for this issue are:
    -Is it okay? or can I do it more efficiently.
    -is it a standard for developing encrypting software? We've followed java api tutorials
    -Can we decrypt this message using comercial software? it just plain text(of course if we have the private key)
    2nd We take this message and we sign it with our private key
    -We use CMS classes from bouncycastle libraries
    The questions we have for this issue are:
    - How can I check , with comercial software, whether this message is signed ok and is valid.
    - How can I know whether this way of signing is in compliance with PKCS7-CMS standard?
    Thanks in advance
    if you need more information ask me

    The file multiscreen.html apepars to do the following:
    It tests if the browser is running on a "hand held device".
       This means it looks to see if the device name includes:
              "blackberry","android","iphone","ipad","symbian","smartphone","ios","windows ce","webos"
    If the answer is Hand-held then the HTML5 published module is loaded. Otherwise it loads swf.
    I can see no check that Flash player is loaded before making the choice, nor does it check the compatability of the HTML5 on the "hand held" device. In other  words it isn't very "smart"

  • 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

  • Something went wrong with sync. between pc and Ipad now part of the information is gone on the ipad how do I put the backup from the pc to the ipad

    Something went wrong with sync. between pc and Ipad now part of the information is gone on the Ipad. How do I take the backup of the pc and put it back on the Ipad.

    Same thing just happened to me.  Help!

  • Installing WorkFlow with ARES, Form Manager and Forms

    Hi All,
    I'm having issues when trying to install WorkFlow with ARES, Form Manager and Forms.
    I've followed these steps:
    1. Installed Forms v. 7.1
    2. Installed Form Manager v. 7.0.1
    3. Installed ARES v. 7.0 (using a trust directory with a keyfile, etc.)
    4. Installed Workflow v. 7.0.1 with Turnkey option checked.
    5. Ran configuration manager.
    The progress gets to 12% then displays the error code "LCMerror101" with the message "Livecycle module pdfagent-client could not be copied to working directory".
    I don't know what this error means, can someone help me?? I know the issue isn't related to disk space (20+ gigs free) and I'm using the administrator account to install. Any suggestions or tidbits of info would be much appreciated.
    Thanks,
    Stone.

    Here's a copy of the log file. lcm.log
    [2006-02-21 14:11:34,437], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@857327[monitorui,../components/monitorui,./wor king/monitorui]
    [2006-02-21 14:11:36,750], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@14b2db7[xmlform,../components/xmlform,./workin g/xmlform]
    [2006-02-21 14:11:38,718], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@a65760[fontmanager,../components/fontmanager,. /working/fontmanager]
    [2006-02-21 14:11:48,312], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@1e140bf[registry,../components/registry,./work ing/registry]
    [2006-02-21 14:12:30,593], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@161bfa3[pof,../components/pof,./working/pof]
    [2006-02-21 14:12:32,390], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@6c9220[workflow,../components/workflow,./worki ng/workflow]
    [2006-02-21 14:12:35,515], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@1ed7524[fm,../components/formmanager,./working /fm]
    [2006-02-21 14:12:39,921], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, INFO , Copying component to working dir: com.adobe.idp.install.lcm.config.Component@a5c9f1[pdfagent-client,../components/pdfagent- client,./working/pdfagent-client]
    [2006-02-21 14:12:39,921], Runnable bean context: My Action (bean23), com.adobe.idp.install.lcm.LCMProcessManager, ERROR, Could not copy components
    com.adobe.idp.install.lcm.LCMException: Could not copy components
    at com.adobe.idp.install.lcm.LCMProcessManager.copyComponentsToWorkingDirectory(LCMProcessMa nager.java:463)
    at MyAction.execute(MyAction.java:165)
    at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    Caused by: com.adobe.idp.install.lcm.LCMException: Illegal state found: File does not exist
    at com.adobe.idp.install.lcm.LCMProcessManager.copyDirOrFile(LCMProcessManager.java:554)
    at com.adobe.idp.install.lcm.LCMProcessManager.copyDirOrFile(LCMProcessManager.java:508)
    at com.adobe.idp.install.lcm.LCMProcessManager.copyComponentsToWorkingDirectory(LCMProcessMa nager.java:459)
    ... 2 more
    [2006-02-21 14:12:40,015], Runnable bean context: My Action (bean23), MyAction, ERROR, LCMerror101{pdfagent-client}
    com.adobe.idp.install.lcm.LCMException: Could not copy components
    at com.adobe.idp.install.lcm.LCMProcessManager.copyComponentsToWorkingDirectory(LCMProcessMa nager.java:463)
    at MyAction.execute(MyAction.java:165)
    at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    Caused by: com.adobe.idp.install.lcm.LCMException: Illegal state found: File does not exist
    at com.adobe.idp.install.lcm.LCMProcessManager.copyDirOrFile(LCMProcessManager.java:554)
    at com.adobe.idp.install.lcm.LCMProcessManager.copyDirOrFile(LCMProcessManager.java:508)
    at com.adobe.idp.install.lcm.LCMProcessManager.copyComponentsToWorkingDirectory(LCMProcessMa nager.java:459)
    ... 2 more
    [2006-02-21 14:12:40,031], Runnable bean context: My Action (bean23), MyAction, ERROR, ErrorCode: LCMerror101, ErrorStr: Livecycle module pdfagent-client could not be copied to working directory.

  • Hello! I have a huge question about how can I get connected my iphone 4 with my car Is there any opption on find my car application? I have a Volvo xc60 and I want to be connected all the time with my iphone. Can I do that?

    Hello! I have a huge question about how can I get connected my iphone 4 with my car Is there any opption on find my car application? I have a Volvo xc60 and I want to be connected all the time with my iphone. Can I do that?

    Hello. I can say that you have a quite strange „huge question”… It’s non-sense to stay connected with your car which is hundreds miles away. Unless…
    I have a theory. You don’t want to controll your car, you want to controll somebody who is driving the car. Volvo XC 60 is a nice family car, usually used by married men between age of 35-45, probably with small children, so it’s very unlikely that you want to controll your teanage kid, mainly because probably even if you would give him/her to drive the car in the neighborhoud, I don’t think that he/she would be „several hundred miles away”…  If your child is not young teneage anymore, and he/she has his/her own life, but you want to control him/her, that is sick… So I am convinced that you want to controll your husband who probably travelling often! Am I wright?
    Isnt’t nice at all! Would you like if you would be monitorized in such way? I bet you don’t!
    Anyway, iPhone is smart, you can use for many things, but come on, you really were thinking that there is such kind of application???
    What could you do it's to put in the car a GPS survelling system, however I don't think that you could do it without your husband knowledge, otherwise he won't be able to start the engine...

  • HT204150 I have recently switched to the latest i-phone. my contacts are updated by i-cloud between phone and mac laptop.there are only about 720 contats showing on phone from app. 1250 on the computer. please advise how to correct phone

    I have recently switched to the latest i-phone. my contacts are updated by i-cloud between phone and mac laptop.there are only about 720 contats showing on phone from app. 1250 on the computer. please advise how to correct phone

    On the mac, only contacts in the "iCloud" section will sync to other devices.  Those in the "On my mac" section do not.  Could that be your problem?
    To test the icloud situation, log into icloud.com with your mac's safari and to to the contacts page.  What you see there is what icloud has received from mac and iphone. 

  • My Reminders app will not open. When I try to open it, quits and gives me an error message: "Reminders quit unexpectedly while using the CalDAV plug-in." My Reminders is synced with my iPod touch, and it is fine on that. How do I fix it?

    My Reminders app will not open. When I try to open it, it quits and gives me an error message: "Reminders quit unexpectedly while using the CalDAV plug-in." My Reminders is synced with my iPod touch, and it is fine on that. How do I fix it?
    Also, the Calendar is loading very very slowly, and sometimes it quits and gives me the same error message as above.

    The problem has been fixed with the most recent OS X software update.

  • I have changed my Apple ID from an old email to a new one.  But It keeps coming up with my old email and asking for my old password. How do i stop this from happening and get it onto my new one?

    I have changed my Apple ID from an old email to a new one.  But It keeps coming up with my old email and asking for my old password. How do i stop this from happening and get it onto my new one?  Its on my Ipad and iphone 5, please help as its doing my head it

    How do you update it? Basically what has happened my password was disabled for "security reasons" on sunday (21/10/12), so i tried to reset it, but for some reason i couldnt get into my old email (probably because i havent used it for 2 years), so i read on here i could swap it to a new email that i currently use (which is what i have done) ive swapped everythin over to it (facetime, iCloud etc) but keeps coming up with old email and asking for password

  • I'm trying to install iCloud on my PC running Windows Vista with Service Pack 2 and I get a message that the set up program is not a valid win32 file.

    I'm trying to install iCloud on my PC running Windows Vista with Service Pack 2 and I get a message that the set up program is not a valid win32 file. Can anyone help me with this?

    What is the exact error message?

  • My computer crashed and I lost everything. It was the only computer with Sync on it and I cannot get my recovery key: how can I get all my bookmarks from that Sync account?

    My computer crashed and I lost everything. It was the only computer with Sync on it and I cannot get my recovery key: how can I get all my bookmarks from that Sync account? I have a ton of bookmarks/saved password and the only way to get on sync is create a new recovery key and lose all of my information.
    Is there any way to get my stuff back without creating a new recovery key and losing all my old stuff?

    It has always been very basic to always maintain a  backup copy of your computer for just such an occasion.
    Use your backup copy to put everything back.

  • HT1430 my iphone 4 has suddenly ceased to work with a full battery and switch will not display slider.  How can I reactivate it?

    My iphone 4 has suddenly ceased to operate with a full battery and switch will not display slider.  How can I reactivate it? Is the memory gone? Will T Mobile replace the memory or the phone if necessary?

    Hello,
    If you're in a country where there's an apple shop (unfortunately not mine), go check it and ask the employee about it: he's gonna check your Iphone on a "device"
    I've got an iphone 5 and it's working very well with me but I have to admit that its battery lasts (slower) than my Ipad 2.
    Still i can help with some tips that may improve your iohone's battery by an hour in addition (hopefully):
    - close all apps by multitasking....
    - do NOT keep the brightness to the max
    Believe me you're gonna regret changing your phone to a samsung
    Hope i've helped and sorry for my bad english (has english as 3rd language)

  • I use "element 12" and want  like in the old PS version due Automating and Contact  II upload multiple filesand print them with any columns and rows on the same page . How does it work?

    I use "element 12" and want  like in the old PS version due Automating and Contact  II upload multiple filesand print them with any columns and rows on the same page . How does it work?

    Can you supply a link?

  • Dear Customer Service Team,  I bought a twelve-month Dreamweaver CC program with monthly payment that I have paid via bank transfer and there would be a question about the activation. How could I get the license key with which I can activate my account? I

    Dear Customer Service Team,
    I bought a twelve-month Dreamweaver CC program with monthly payment that I have paid via bank transfer and there would be a question about the activation. How could I get the license key with which I can activate my account? I can not find it and now I only have access to the trial version.
    Thank you for your help in advance.
    Kind Regards,
    G. Zsolt

    There is no serial number require for Creative Cloud products, you may activate the products using your email address and password which is associated with Adobe. If your Dreamweaver asking for serial number, then make sure you are signing in with correct email address.
    You may also refer below link
    Sign in, activation, or connection errors | CS5.5 and later

  • If i buy a blue ray with a digital copy and if i download the movie on my PC from work, i will be able to download it on my Mac at home later on?

    if i buy a blue ray with a digital copy and if i download the movie on my PC from work, i will be able to download it on my Mac at home later on?

    No, it will be a one use only code. Copy the file onto a memory stick and import it into your library at home later.
    tt2

Maybe you are looking for

  • A/R Invoice PLD

    Hi Everyone, On the A/R Invoice PLD I created, I am showing both the Item No. and the Customer/Vendor Catalog No.  I selected both fields from teh A/R Invoice - Rows table.  However, on one of my invoices teh Customer/Vendor Catalog No. is not coming

  • File not getting Saved on Application Server

    Hello All, We created a file in "Automatic Payment Transactions (F110 Transaction)" and are able to save the text file on Local drive. But for our e-banking requirement we need to store this file on our application server. The configuration settings

  • Non Dreamweaver Extension Photo Album (Gallery) Recommendations

    Hi all, I knwo this is a dreamweaver forum, but I also know that it's the place to come for non dreamweaver web questions. So, does anyone have any recommendations for a 'non dreamweaver' photo album (gallery)? I found this one JAlbum, has anyone use

  • Is there any flashplayer that is compatible with an ibook G4

    I am wondering if anyone knows of a flashplayer that is compatible with an ibook

  • Oracle 8i SQL - Dealing with no records matching a value

    Warning: before you read this, please understand I'm no expert on SQL, so it's quite likely I screwed something obvious up... I'm trying to do a query kind of like the following: SELECT BOM.COMPONENT, BOM.QTY_PER, BOM.PARENT, BOM2.PARENT_QTY_PER FROM