Skip to content

Instantly share code, notes, and snippets.

@rugbyprof
Last active August 29, 2015 13:56
Show Gist options
  • Save rugbyprof/9316116 to your computer and use it in GitHub Desktop.
Save rugbyprof/9316116 to your computer and use it in GitHub Desktop.
Concatenate two avi files
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