Software > Video editing > Linux video ripping and encoding >
(on Wikipedia)
http://www.mplayerhq.hu/
A commandline tool to fiddle with video.
A sibling of MPlayer
(source not recorded)
mencoder -dvd 1 -alang en \ -oac mp3lame -lameopts cbr:vol=3:br=96 \ -ofps 23.976 \ -ovc xvid -xvidencopts bitrate=684:4mv \ -vop scale=640:272,crop=708:358:6:60 \ -o 'SomeClip.avi' \ -ss 1:29:00.00 \ -endpos 0:5:0
This encodes a portion of video from Title 1 of the dvd, using the english
language, encoding the audio as MP3 (constant bit rate, boosting the volume
by 3, at 96kbps), setting the output frame rate to 23.976, using the
xvid encoder, with 684Kbps for the video stream. It scales and crops the
image so that only the video is encoded, and not junk black bars that
might be in the video; writes the output to an AVI file; jumping
one hour and 29 minutes into the movie and taking a 5 minute clip.
The newest mencoder has deprecated the -dvd 1
notation in
favour of the URL form, dvd://1
. and that :4mv
option is no
longer recognized.
mencoder -oac copy -ovc lavc -vf rotate=1 -o $1-r.mpg $1.mpg
Last updated 2023-10-10 at 17:29:01
ported