Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
748 views
in Technique[技术] by (71.8m points)

video - FFmpeg concatenation, no Audio in Final Output

I have the following command working in ffmpeg, which adds 1 second of a black frame to the beginning of the video. However, I lose the audio from the original video in the output video. How can I adjust the command to make sure the original audio stays with the final output, or better yet, there is 1 second of "blank" audio at the beginning so it matches the new output video.

ffmpeg -i originalvideo -f lavfi -i color=c=black:s=1920x1080:r=25:sar=1/1 -filter_complex "[0:v] setpts=PTS-STARTPTS [main]; [1:v] trim=end=1,setpts=PTS-STARTPTS [pre]; [pre][main] concat=n=2:v=1:a=0 [out]" -map "[out]" finaloutputvideo.mp4
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to generate or add audio to be associated with the black video because each concatenated section needs the same number of video and audio streams.

ffmpeg 
-i originalvideo 
-f lavfi -i color=c=black:s=1920x1080:r=25:sar=1/1:d=1 
-t 1 -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=44100 
-filter_complex 
"[0:v]setpts=PTS-STARTPTS[mainv]; 
 [0:a]asetpts=PTS-STARTPTS[maina]; 
 [1:v][2:a][mainv][maina]concat=n=2:v=1:a=1[v][a]" 
-map "[v]" -map "[a]" -movflags +faststart output.mp4
  • You can eliminate the (a)setpts filters for the color and anullsrc source filters since their timestamps start at 0.

  • You can avoid the trim filter because you can set the duration for each filter.

  • The -t value for the anullsrc duration only needs to be less than or equal to the duration of the black video: the concat filter will automatically pad the rest with silence.

  • With anullsrc ensure that you match the proper channel layout and audio sample rate of your main video; otherwise concat may automatically choose a "common" layout and rate that may not be what you want.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...