Reputation: 51
How can I concatenate video files from different source in the same command: pipes (mkfifo) and from the file system (no reencoding) ?
Thanks
Upvotes: 0
Views: 586
Reputation: 2353
# files.txt
file 'clip1.mov'
file 'clip2.mov'
file 'clip3.mov'
$ ffmpeg -f concat -i files.txt -c copy output.mov
Fun with ffmpeg: Joining video clips
Upvotes: 2