tags:

views:

373

answers:

1

I have two movie clips encoded in mpeg2. Is it possible to use ffmpeg to combine them sequentially into one mpeg2 file? If so, what are the command line options?

+1  A: 

You simply put both of them in sequence in the command line:

ffmpeg -i vid1.mpg -i vid2.mpg

This is according to the documentation, FYI.

Eric
And if you ever have files that can't be concatenated, turn them first into file types that can.
Adrian Lynch