What's the correct workflow for high FPS footage motion blur?

Situation is the following:
I have a few 600fps recordings I want to put together with heavy editing.
Things I want to do (not in order):
Change the velocity heavily up and down, from 300% to 10% and back withing seconds.
Basic VFX, heightmap, masking, light flashes and so on.
3D tracking and effects, particles and text in 3D space
Color Correction
Good motion blur
Overlays
Now, my question is at which point I apply the motion blur. I'd like to start in Sony Vegas for the velocity and then move to After Effects.
But Sony Vegas is capable to export at max 120fps. Will the motion blur result be worse/different with minro FPS footage?
In Sony Vegas for example, the resample feature is pretty useless/bad unless you go over 120fps.
But obviously I can't start by importing my footage into AE and firstly add motion blur. By my understanding I have to do all FX and color correction before adding motion blur, and until then the footage has to stay 600fps. Is this correct?
Thanks in advance.

and until then the footage has to stay 600fps. Is this correct?
No. Motion blur is calculated from frame to frame at the actual playback speed. Anything else would look fake, anyway, though of course you may already ned to/ want to add some motion blur to some elements halfway through just to from the precision of higher framerates. Smoother curves and all that. So ultimately in which order you do it is till a matter of what gives you the best result, not so much a fixed "correct" order.
Mylenium

Similar Messages

  • What is the correct cable for iMac 11,2 Intel core i3, mini dvi to vga or mini display port to vga?

    What is the correct cable for iMac 11,2 Intel core i3, mini DVI to VGA or mini display port to VGA to hook up to projector? Thanks!

    mini-DisplayPort.
    Regards.

  • Update my app. What is the correct procedure for updating an app/folio?

    I designed a folio in Indesign CS6 and created an app of the folio in adobe dps and succesfully uploaded it to the app store. Now I want to update my app. What is the correct procedure for updating an app/folio?

    no, just update your content and recreate the Single Edition App. Your certificate should still be valid so there is not need to recreate these.
    ... your App ID absolutely need to be the exact same one you used for the first version if you want to make sure this is an update.

  • What are the correct settings for my WRT54GS for using remote access on a Windows Home Server?

    I can not remotely access my Windows Home Server from outside.  What are the correct settings for my WRT54GS?

    I have opened ports 80, 443,and 4125 to PCP.  The  router address is http://192.168.1.1, my address is 221.40.138.170.
    Thank you.

  • What is the correct wpa for hp photosmart 5514e all in one printer b 111h

    What is the correct WPA for HP Photosmart 5514e All in one Printer B111h

    Hi,
    The correct WPA one is the one only you (or relatives/friends) know. You may forget therefore you have to logon to you wireless router to find out.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • What is the short cut for Square meters in Motion 5?

    What is the short cut for Square meters in Motion 5?

    and in case, you meant a simple m²
    in your System Prefs/Keyboard, check the box 'Overview in Menu'
    you'll then find this icon to click on, opening this
    goto 'Numbers', double click the superscripted ² and it will added wherever your cursor is actually ...
    (very useful to apply arrows ⇐, or symbols ☏ or dingbats pics as ⚽︎ or pointers  ☞ in any app ..)

  • Iphone 6 What is the correct amperage for charging in an automobile?

    I want to charge my iphone 6 in a automobile, please what is the correct amperage of the adapter?

    All of the following are described as 2.4 amp and as suitable for the iPhone 6:
    http://store.apple.com/us/product/HG1Q2ZM/A/incase-high-speed-mini-car-charger?f node=46
    http://store.apple.com/us/product/HG1R2ZM/A/incase-high-speed-mini-car-charger-w ith-lightning-to-usb-cable?fnode=46
    http://store.apple.com/us/product/HG1S2ZM/A/incase-high-speed-dual-car-charger-w ith-lightning-to-usb-cable?fnode=46

  • What are the correct settings for the Canon 5D mark II in FCP 7 ?

    I am shooting full HD at 23s97 fps.. tried making a preset for the Canon but when I import fils FCP always wants to change to appropriate settings for this file type but doesn't tell me what that is...
    (latest firmware installed)
    Please, can someone provide all the correct settings for me?
    And also, why doesn't the camera show up on the desktop/in the menus when attached to the mac? I have ro use EOS utility every time I want to get anything off of the camera... and FCP doesn't see it either. That's just not right - FCP MUST recognise my camera!! : (
    Please help - I don't want to start editing until I have the right settings for this footage.
    Thanks
    Jim

    Welcome to the Boards
    Not sure what you mean with the following, looks like a word dropped?
    I have ro use EOS utility every time I want to get anything off of the camera...
    Anyway, some more specs on your system could help point where the issue is. With the new Plug-In by Canon you can Log & Transfer from the Flash Card (not sure how you connected the camera.) Alternatively you could just drag the files in (but make sure to keep all files such as THM in case you use Log and Transfer later.)
    Generally it is best to transcode to Pro Res to be able to work with the files in Final Cut. (Log & Transfer should do that, or using Compressor/Mpeg Streamclip.)
    It (Final Cut) is probably changing the timeline to match the codec, or depending on your last preset used, just switching things around. In other words if you were editing in DV and had a set up for that, new sequences would default to that and if you try to ad anything else you will get the message.
    Take a look at the search over there -> to look for the Canon 5D threads for some more info.
    What I would do is just pull one of the clips in to start and look at what the sequence settings are aftr Final Cut changes them for you - they should be fine generally, though you will want to change Codecs to Pro Res.
    I like just batch conversion of all my clips from the 5D Markk II and then work from there. (I do not hook up the camera to the computer, just use a card reader.)

  • What is the correct syntax for using a variable in an ad hoc query?

    Hi all
    I am an occasional DB user and at the moment need to update about 1000+ records so that a certain column gets a unique value.
    So I thought that I would use a variable for this.
    I then built this kind of SQL statement for just a small subset of the records:
    variable recNumber number;
    exec :recNumber := 1;
    UPDATE TABLE_TO_BE_UPD
    SET COL_TO_BE_UPD = COL_TO_BE_UPD + recNumber
    WHERE COL_TO_BE_UPD IN ('VAL_A','VAL_B');
    I get the invalid SQL statement error when attempting to execute above (besides the prompt that asks for a value which I would like to omit).
    Anyway I also tried this one:
    CREATE SEQUENCE seqCounter;
    UPDATE TABLE_TO_BE_UPD
    SET COL_TO_BE_UPD = COL_TO_BE_UPD + seqCounter.NEXTVAL
    WHERE COL_TO_BE_UPD IN ('VAL_A','VAL_B');
    From this one I got the error ORA-01722: invalid number...I am guessing this comes because seqCounter is of type number and the COL_TO_BE_UPD is of type character...(?)
    So what I would like to ask is what is the correct way to define and use a counter type of variable to append a number at the end of a character string?
    Also another question that I would like to ask is that are variables that are used in ad hoc queries also called 'bind variables'?
    Thanks muchly

    If you want to append a unique number to a column then this would do it:
    UPDATE TABLE_TO_BE_UPD
    SET COL_TO_BE_UPD = COL_TO_BE_UPD ||to_char(rownum)
    WHERE COL_TO_BE_UPD IN ('VAL_A','VAL_B');

  • Why jpeg file exported from Aperture with 300 dpi's it opens with 72 dpi's on PS ( image size)? I've tried several combinations and all give different results. And I am confused on what is the best workflow for me.

    Ok.
    My workflow is
    RAW > Aperture Library > export jpeg high resolution 300 dpi's > one file on PS > edit > Save us jpeg. The I realised that files from PS were being save in a smaller size from the ones exported form Aperture. That is when I went o see <image size> on PS and files were with 72.
    Since ten I've trying different things
    1. Aperture > export as PSD > open on PS > edit > Save us jpeg = small file (around 15 MB)
    2. Aperture > export as jpeg high resolution 300 dpi's > open on PS > CHANGE dpi's to 300 on <image size> edit > Save us jpeg = big file (Huge, actually)
    What am I doing wrong? Would someone give me guidance and tell me what is the best workflow, considering I edit photos to deliver to my clients and I shall give them 300 dpi's.
    Thank you

    This is a known Aperture issue: Problem with Aperture 3.6 preset exports. | Apple Support Communities
    Benjamin

  • What is the correct procedure for upgrading to aperture 3.4

    I am working in South Sudan and am shortly going to be in a place where I can download all the updates. The last time I did an update was around 2 weeks ago.
    I presume that there will be updates for Mountain Lion, iPhoto and Aperture, plus a whole pile of iOS updates. From the support questions I see that there is a number of people having problems.
    I presume that the first thing to do will be to rebuild the library of aperture.
    What is the correct procedure after that?

    If I do an upgrade through AppStore, and find it does not work, do I uninstall first by removing to trash? What do you mean by revert to an earlier version, and which previous version of Aperture should I use.
    Neville,
    So you did buy Aperture from the AppStore?
    Then move the Aperture application to the Trash, but do not empty it, just in case
    Sign into the AppStore and reinstall. In this case you do not need to revert to an earlier version. If the AppStore installer does not find an Aperture in your Applications folder, it will have to make a full install, and no incompatible frameworks should remain, as is the problem with the partial upgrades right now.
    Yes, I have a bootable clone,
    And have you checked, if you really can boot from your clone? Just being very cautious.
    Do you use facebook? Some posters are having problems, even after reinstalling, if the want to publish to Facebook. Post back, if you encounter that problem.
    Good Luck
    Léonie

  • What is the correct architecture for retrieving several complex decision reports

    The project that I am currently working on is required to save decision reports for several complex outputs.  These outputs are needed for each person entity contained in the request. All of the person entities are joined via relationships and the more people that are sent in the request, the more complex the decision reports become.
    We are using the determinations server and it is called as a web service.
    The determinations server starts having performance issues when the requests contain 6 people entities and times out when the number of people get to around 10.
    Checking the response size for a 10 person request with the complex decision reports yields a response size of around 40mb.
    What is the correct architecture to still have the traceability of what happened by having a copy of the decision report for each run without impacting system performance?

    Has anyone else encountered this issue?

  • What is the "correct"  name for the new iPad?  Is it also called the 3rd Generation?

    I have the latest iPad, purchased Mar '12.  But when I read Apple News it is referred to as the "new ipad" & somtimed the 3rd Generation.  What is the "correct name & will "SIRI" be available with this Fall latest update?  Thanks!!!

    Yes, it is somewhat confusing isn't it. Almost like, the iPad is having an identity crisis. I believe the official Apple line would be that it is the "New iPad" but I see it referred to the 3rd generation just as frequently as the new iPad.
    Siri will be available for the "new iPad/3rd Gen when iOS 6 is released this fall.

  • What is the best workflow for Final Cut Pro X across multiple computers?

    I travel on a team that is in a different location every week, so all of our video editing has to be fairly moble. We have 3 macbook pros and would like to use final cut X on all of them. What would be the best workflow for us all to work on the same project and sync it across the computers? (eg, one of us editing the footage, one editing the sound, one working on visual effects?)

    My first question would be how well 5.1 would work with SL. People have reported problems.
    As far as cameras are concerned, I would guess most any tape-based camera would work and so much depends on the kind of projects you work on that I wouldn't want to start guessing at your needs.
    If you want broad access to tapeless and advanced formats try to locate and purchase an upgrade disk to 6 or 7.
    Good luck.
    Russ

  • VT01N: what is the correct  procedure for creating shipment

    Hi Gurus ,
    Please tellme the correct  procedure for creating shipment  in VT01N   with respect to the  Sales order  no .  there  are  deliveries and ohter  sceens what to do  first .
    Regards, Jaspal

    Hi Jaspal,
    Procedure for creating shipment sequence goes as:
    <b>Shipping Processing and Analyses</b>
    Shipping activities.
    Deliveries.
    Picking and confirmation.
    Packing.
    Goods issue.
    Collective processing.
    Shipment.
    Billing.
    Sales Information System.
    Standard analyses.
    Backorder processing.
    Sales and distribution documents.
    Functional analyses.
    Planning.
    Pls refer the link:
    http://www.sap-img.com/sap-sd.htm for more details.
    Regards,
    Hemachandra K S

Maybe you are looking for

  • Work Around on Datasource 0GLACCEXT

    Hi Gurus, I'm currently implementing a BW project for FI Balance Sheet. But I encountered a problem regarding the Datasource. Since the R3 we are connecting is version 4.6b and the patches are not updated, the datasource 0GLACCEXT is missing. Is ther

  • BADI HRXSS_PER_BEGDA

    HI, We are currently in the process of implementing ESS Service for Bank Details (IT 0009). The requirement is to select a past date (first date of the next pay period) as the default date. SAP recommends to implement the BADI HRXSS_PER_BEGDA to sele

  • My MacBook Pro starts and shuts off after loading for sometime

    My MacBook Pro starts and shuts off after loading for sometime

  • Why does finder behave erratically

    This has been going on for a long time, but curiosity just got the better of me: Ever since Mountain Lion (or even the one before that), I have noticed that the finder is behaving erractically - at least on my MacBookPro. The two most annoying "featu

  • Correct Password Using Screen Share But Incorrect While Connecting To Serve

    I have two computers networks together both running Leopard. I am able to use screen share to take control of one of the computers but when I try to connect to it to view files I keep getting told that my usename or password is incorrect. However I a