Created
June 18, 2011 05:59
-
-
Save atma/1032844 to your computer and use it in GitHub Desktop.
Splitting an AVI file into smaller parts
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
mencoder -endpos 01:00:00 -ovc copy -oac copy movie.avi -o first_half.avi | |
mencoder -ss 01:00:00 -oac copy -ovc copy movie.avi -o second_half.avi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment