Files
linux-wiki/content/deepin折腾笔记/第六章/6.11.3.md
2021-10-21 14:57:58 +08:00

8 lines
458 B
Markdown
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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