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 |
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
This site uses Akismet to reduce spam. Learn how your comment data is processed.
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