아래 두가지 방법이 가장 간단한듯. 아래글중 10초씩 자르는것과 붙이는 것, 앞에 Title자동으로 넣는것까지 3가지만 있으면 될듯.
*concat demuxer
$ cat mylist.txt
file '/path/to/file1'
file '/path/to/file2'
file '/path/to/file3'
$ ffmpeg -f concat -i mylist.txt -c copy output.mp4
$ ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
Note: -safe 0 is not required if the paths are relative but it seems required.
*concat protocol
ffmpeg -i "concat:input1|input2" -codec copy output.mkv
https://superuser.com/questions/1059245/ffmpeg-join-two-mp4-files-with-ffmpeg-on-command-line
https://stackoverflow.com/questions/7333232/how-to-concatenate-two-mp4-files-using-ffmpeg
'Programming' 카테고리의 다른 글
FFMPEG GUI frontend tool (0) | 2019.08.21 |
---|---|
10 simple Linux tips in the command line (0) | 2019.08.20 |
Ubuntu upgrade 18.10 -> 19.04 (0) | 2019.08.15 |
핸드폰 비디오 rotate하기 (0) | 2019.08.14 |
FFMPEG으로 비디오 파일에서 10초만 짤라서 만들기 (0) | 2019.08.13 |