合并多个MP4文件

把多个MP4文件连接起来的方法与音频文件不太一样,比较有效的方法是:

$ cat mylist.txt
file '/path/to/file1'
file '/path/to/file2'
file '/path/to/file3'

$ ffmpeg -f concat -i mylist.txt -c copy output

  

原文地址:https://www.cnblogs.com/liuyihua1992/p/11080593.html