Singler line FFMPEG cmd to Merge Video /Audio and retain both audios

后端 未结 6 1739
梦毁少年i
梦毁少年i 2021-01-30 09:25

I have a project that requires merging of a video file with another audio file. The expected out put is an video file that will have both the audio from actual video and the me

6条回答
  •  别那么骄傲
    2021-01-30 10:09

    This is very easy with FFmpeg:

    ffmpeg -i vid.mp4 -i audio.mp3 -codec:a libmp3lame -ar 44100 -ab 64k -ac 1 -q:v 1 -pix_fmt yuv420p -map 0:0 -map 1:0
    

提交回复
热议问题