Last active
August 29, 2015 13:56
-
-
Save rugbyprof/9316116 to your computer and use it in GitHub Desktop.
Concatenate two avi files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat Part1.avi Part2.avi > tmp.avi && mencoder -forceidx -oac copy -ovc copy tmp.avi -o output.avi && rm -f tmp.avi | |
//Obviously it requires mencoder, which comes with mplayer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment