adding silent audio in ffmpeg

后端 未结 4 1078
天涯浪人
天涯浪人 2020-12-04 09:15

I\'m trying to use ffmpeg to add a silent audio track to a MOV file.

I created a silent audio track longer than the video, and intend to use the -shortest option wit

4条回答
  •  借酒劲吻你
    2020-12-04 09:52

    Order matters. I have tried the sox command above and the ffmpeg command below and it works

    ffmpeg -shortest -i silence.wav -acodec pcm_s16le -i out.mov -vcodec copy -strict -2 vid_with_sound.mov
    

提交回复
热议问题