Linux使用ffmpeg合併視訊

學亮程式設計手記發表於2020-12-28

在視訊檔案所在目錄下新建一個檔案filelist.txt,內容如下:

file '1.mp4'
file '2.mp4'
file '3.mp4'
file '4.mp4'
file '5.mp4'
file '6.mp4'
file '7.mp4'
file '8.mp4'
file '9.mp4'
file '10.mp4'
file '11.mp4'
file '12.mp4'
file '13.mp4'
file '14.mp4'
file '15.mp4'
file '16.mp4'

在命令列執行如下命令:

ffmpeg -f concat -i filelist.txt -c copy output.mp4
然後,一個合併好的 output.mp4 檔案就生成了!

相關文章