Avi

From In The Wings
Revision as of 22:36, 26 October 2007 by Jka (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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