Merging 2 audios files with a video in ffmpeg

前端 未结 1 989
走了就别回头了
走了就别回头了 2020-12-18 12:06

I\'m trying to merge 2 audio file .WAV with 1 video file .MP4 to produce the output in .MP4 extension using CMD in

相关标签:
1条回答
  • 2020-12-18 12:19

    In order to mixdown the audio, you should use the amix filter

    ffmpeg -i V.MP4 -i A1.WAV -i A2.WAV -filter_complex "[1][2]amix=inputs=2[a]" -map 0:v -map "[a]" -c:v copy Output.MP4
    
    0 讨论(0)
提交回复
热议问题