Files
2021-10-21 14:57:58 +08:00

458 B
Executable File
Raw Permalink Blame History

6.11.3 ffmpeg 视频连接

将需要连接的视频文件名根据自己需要的顺序放在in.txt文件中每个文件一行
file '0390-3917.mp4'
file '3918-7446.mp4'
连接视频和音频ffmpeg -f concat -i in.txt -c copy out.mp4
只连接视频丢弃音频ffmpeg -f concat -i in.txt -c:v copy -an out.mp4
只连接音频丢弃视频ffmpeg -f concat -i in.txt -c:v none -c:a copy out.mp3