How to concatenate multiple media files using avconv

To concatenate multiple media files use avconv as follows:-

avconv must be installed

 avconv -i concat:"file1.avi|file2.avi|file3.avi" -c copy all.avi

Add a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Comments

  1. Geoff

    This is fine assuming you only have a small number of files but in my case I have 60+.

    In ffmpeg I can list them all in a txt file and then use that in the command line but that does not work with avconv. So how can I concat all these files

    Reply
    1. Geoff

      ffmpeg is not an option I’m stuck with avconv in this instant

      Reply