adding silent audio in ffmpeg

后端 未结 4 1062
天涯浪人
天涯浪人 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条回答
  •  -上瘾入骨i
    2020-12-04 09:51

    Here's a command for the latest ffmpeg, works with MP4 (H264/AVC):

    ffmpeg -f lavfi -i aevalsrc=0 -i input.mp4 -c:v copy -c:a aac -map 0 -map 1:v -shortest output.mp4
    

提交回复
热议问题