参考
1 2 3 4 5 6 7 8 9 |
結合したいファイルの名称を適当なテキストファイルに羅列します。 file /home/hoge/0.mp4 file file C:/C/2020-09-4-19-50-45.0001.ts file file C:/C/2020-09-4-19-50-45.0002.ts file file ドライブ:/フォルダ/2020-09-4-19-50-45.000X.ts 当該のテキストファイルを -iでffmpegに読み込ませます。そうすると、.tsファイルがMP4に変換されます。 ffmpeg -f concat -safe 0 -i C:\C\input.txt -c copy C:\C\output.mp4 ffmpeg -f concat -safe 0 -i [結合元ファイルのリスト].txt -c copy [出力ファイル名].mp4 |
(input.txt)
1 2 3 |
file 1.ts file 2.ts file 3.ts |
1 2 |
# カレントディレクトリのinput.txtに記載のある複数の動画ファイルを1つのoutput.mp4に連結するコマンド docker run --rm -v $(pwd):$(pwd) -w $(pwd) jrottenberg/ffmpeg -f concat -safe 0 -i ./input.txt -c copy ./output.mp4 |