You are not logged in.
Pages: 1
I have an uncompressed avi file which I would like to compress with xvid. i dont want to have to do anything fancy or complicated. what i'd like is a command like...
xvid -e oldfile.avi newfile.avi
is something like that possible? if not, what do i need to do to encode this file?
Last edited by tony5429 (2007-07-19 22:54:01)
Offline
mencoder sounds like what you need. Comes with mplayer.
mencoder input.avi -o output.avi -ovc xvid -xvidencopts bitrate=3000
Found here http://wiki.qwdrama.com/Mencoder_howto maybe better optimisation configs but don't really know, plenty in man for mencoder.
Offline
it works; thanks!
for other people seeing this, you need to specify -oac for audio encoding. to directly copy audio and compress the video to xvid...
mencoder input.avi -o output.avi -ovc xvid -xvidencopts bitrate=3000 -oac copy
Offline
Pages: 1