I'm wondering how to handle muxing seperate audio and video from a DCP. Ideally, I'd also like to put filters such as timecode/watermark (hopefully it's the same process as usual in ffastrans)
I've gotten this to work in ffmpeg (just using prores as an example, I'd probably use h264 in practise) with
Code: Select all
ffmpeg.exe -i E:\MVI_3970.dcp\jp2k_54c1a423-1a2c-418a-9fca-481f09173e4d.mxf -i E:\MVI_3970.dcp\wav_cb6b093a-ec0b-4fed-b447-65e55d3d696a.mxf -vcodec prores -acodec copy "F:\muxed.mov"
Image: jp2k_54c1a423-1a2c-418a-9fca-481f09173e4d.mxf
Audio: wav_cb6b093a-ec0b-4fed-b447-65e55d3d696a.mxf
I just can't get ffmpeg to pick up the seperate sources. I saw that other thread about seperate image sequences and audio but couldn't apply it here.
Any help would be greatly appreciated.