Menyerap Ilmu Yang Luas Ke Dalam Hati

3.8.13

Convert WMV into AVI with Ubuntu

05:05 Posted by Shichibukai Encraptor No comments
sudo apt-get install mencoder
mencoder infile.wmv -ofps 23.976 -ovc lavc -oac copy -o outfile.avi


Kalau nak buat banyak2 video:

find ~/VIDEOS type -f -name "*.WMV" -exec mencoder {} -ovc xvid -oac mp3lame -srate 44100 -af lavcresample=44100 -xvidencopts fixed_quant=4 copy -o {}.avi \; 

Just substitute ~/VIDEOS for whatever dir you want to search.