Thread: Dailies and offlines with audio

Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 13
  1. #1 Dailies and offlines with audio 
    Has anyone figured out the best way of creating offlines or dailies with audio from files rendered out of Resolve (with no audio)? I was wondering if there was some great tool that would enable me to batch-merge something like a ProRes file with a wave file based on timecode or something.

    Any suggestions would be much appreciated :-)

    I'm currently looking into possibly using ffmbc but we'll see how that works out. Hoping there's a better solution than command line tools.

    Thanks

    Tony
    Tony Lorentzen, Kinema Follow me on Twitter: kinemadk
    Freelance RED Tech, DIT & Workflow wizard, Partner in VBag, Owner of RED EPIC-X #420
    Reply With Quote  
     

  2. #2  
    Senior Member Steve Sherrick's Avatar
    Join Date
    Dec 2006
    Location
    Boston
    Posts
    5,339
    Steve Sherrick
    Chief Collaborator
    Modern Vintage Media
    STEVESHERRICK.COM
    Local 600 DIT/Operator
    Reply With Quote  
     

  3. #3  
    Senior Member
    Join Date
    Apr 2008
    Location
    Washington DC Metro Area
    Posts
    2,015
    Ingest with Premiere (this is the "original")
    XML to Resolve
    Base Grade
    Render in "source mode"
    XML to Premiere
    copy paste audio from original Premiere sequence

    You can use several variations on that. You can do the same in FCP.

    When I am down after my current project I think I can work out how to get Premiere to replace footage with the Rendered Resolve source mode stuff, but right now copy/paste works.

    Of course ... this is another step, in another program.

    I do wish the Black Magic/DaVinci folks would add connected audio to Resolve. I don't care too much about controlling audio ... but if a video file has audio, they should play it, and they should export it with out altering it along with renders.
    Alexander Ibrahim
    Director & DP
    editing/color correction/compositing/effects
    http://www.alexanderibrahim.net
    http://www.zenera.com
    Reply With Quote  
     

  4. #4  
    Tony,

    Here is a little shell script I wrote to do exactly what you want. It takes the rendered video from Resolve and merges the audio from the original. It is very fast.

    ################################################## #
    #!/bin/bash


    clear
    echo "Filenames must match for audio and video"
    echo -n "Where are the Quicktime video files : "
    read -e video
    echo " "
    echo -n "Where are the Quicktime files with audio : "
    read -e audio
    echo " "
    echo -n "Where should I write the new Quicktime files with audio : "
    read -e loc
    echo " "


    for FILE in $(find -s "$video"/*.mov -type f 2>&1) ;

    do
    FILE2=`echo "$FILE" | awk -F / '{print $NF}'`
    FILE3=`echo "$FILE" | awk -F . '{print $1}'`
    muxmovie $video/$FILE2 -track "Video Track" $audio/$FILE2 -track "Sound Track" -self-contained -o $loc/$FILE2 ;

    done
    exit
    ################################################## #


    It uses QTCoffee, so you need to get that and install it.
    http://www.3am.pair.com/QTCoffee.html

    If it doesn't give you timecode in the result file, you might need to tell it which file to get timecode from. Something like:

    muxmovie $video/$FILE2 -track "Video Track" -track "Timecode Track 1" -track "Timecode Track 2" $audio/$FILE2 -track "Sound Track" -self-contained -o $loc/$FILE2 ;

    It would be very easy to have it pull audio out of a Red QT wrapper.

    As will all my scripts, test before you use it.


    Dusty
    Reply With Quote  
     

  5. #5  
    Dustin - that is too cool. I'll test it out today and get back to you. Thanks so much for sharing!
    Tony Lorentzen, Kinema Follow me on Twitter: kinemadk
    Freelance RED Tech, DIT & Workflow wizard, Partner in VBag, Owner of RED EPIC-X #420
    Reply With Quote  
     

  6. #6  
    Senior Member
    Join Date
    Dec 2006
    Posts
    167
    Thanks!!!
    Is possible to do the same with pro res 4444?
    Reply With Quote  
     

  7. #7  
    Jose - I just did a quick test with video from a ProRes422 and audio coming from ProRes4444 (from the Alexa). Works fine. My plan is to wrap this into an OSX app and share it for free with my fellow REDUsers :-)
    Tony Lorentzen, Kinema Follow me on Twitter: kinemadk
    Freelance RED Tech, DIT & Workflow wizard, Partner in VBag, Owner of RED EPIC-X #420
    Reply With Quote  
     

  8. #8  
    I just edited the script to take out the references to h264. This works with any quicktime files. The Quicktime file with audio needs to be the same length as the graded file without audio.

    I should redo this with a GUI, but it is so easy to edit the script as needed.


    Dusty
    Reply With Quote  
     

  9. #9  
    Senior Member Tom Gleeson's Avatar
    Join Date
    Nov 2007
    Location
    Sydney
    Posts
    431
    Wow if that shell script could be given a GUI I would be happy to buy a copy
    Tom Gleeson
    Reply With Quote  
     

  10. #10  
    Senior Member Tom Gough's Avatar
    Join Date
    Oct 2008
    Location
    London, UK.
    Posts
    279
    Quote Originally Posted by Dustin Cross View Post
    I just edited the script to take out the references to h264. This works with any quicktime files. The Quicktime file with audio needs to be the same length as the graded file without audio.

    I should redo this with a GUI, but it is so easy to edit the script as needed.

    Dusty
    I envy how effortlessly you work with these scripts Dusty - awesome stuff!

    You should really start packaging up your scripts all with GUIs and sell them. Maybe call them "Dusty Tools". ;)

    Either way keep on truckin.

    Quote Originally Posted by Tom Gleeson View Post
    Wow if that shell script could be given a GUI I would be happy to buy a copy
    +1

    All the best,
    Tom Gough
    DIT & Data Manager
    FLOW-MPS.com
    Reply With Quote  
     

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts