Skip to content

Instantly share code, notes, and snippets.

@meisa233
Created October 28, 2022 07:14
Show Gist options
  • Save meisa233/ea588f2a8c0a39d3ea9d65b51b09d0d6 to your computer and use it in GitHub Desktop.
Save meisa233/ea588f2a8c0a39d3ea9d65b51b09d0d6 to your computer and use it in GitHub Desktop.
merge two mono audio files and one video file to .mxf
ffmpeg -i video_path -i audio_path_1 -i audio_path_2 -strict -2 -filter_complex "[1:a][2:a]amix[audio]" -ac 2 -map 0:v -map "[audio]" -c:v copy output.mxf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment