Avi
Jump to navigation
Jump to search
Splitting AVI's with mencoder
mencoder -ovc copy -oac copy -ss 56:54 -endpos 11:07 -o output.avi input.avi
-ss Start Position -endpos End Position
Combining AVI's wiht mencoder
First, combine the two AVI's via shell redirection:
cat file1.avi file2.avi >> output.avi
Next, re-encode the file so that things are synced properly:
mencoder -forceidx -oac copy -ovc copy infile.avi -o outfile.avi