Order of the Butterfly
Posts: 416 from 2003/2/24
From: Berlin
You can also use mplayer/mencoder to cut a movie!
Start mplayer with this additional argument "-edlout <filename for the edl file>".
Code:
mplayer -gui 1 -edlout movie.edl movie.avi
Then you have to press "i" at the start and at the end of the part which is to be cut out.
To play a movie with an edl file
Code:
mplayer -gui 1 -edl movie.edl movie.avi
MPlayer then skips the parts which you defined with pressing "i".
To cut the movie you need mencoder:
Code:
mencoder -edl movie.edl -ovc copy -oac copy movie.avi -o movie_cut.avi