Monday, January 14, 2019

ffmpeg, 複数の動画をつなげて1つの動画にする

ffmpeg, 複数の動画をつなげて1つの動画にする
https://qiita.com/ran/items/28641a7a0ad8a40c8f72

ffmpeg -f concat -safe 0 -i list.txt -c copy concat.mp4
list.txtファイルには、つなげたい動画を1行に1ファイルずつ頭に『file 』を付けて順番に書く。

list.txt
file /path/to/input/file1.mp4
file /path/to/input/file2.mp4

No comments:

Post a Comment