Multimedia How to concatenate multiple media files using avconv September 10, 2014 | Adrienne Kotze 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 avconv -i concat:"file1.avi|file2.avi|file3.avi" -c copy all.avi Share and Enjoy !0Shares0 0 #avconv #linux Share
Geoff November 5, 2015 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
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
ffmpeg is not an option I’m stuck with avconv in this instant