How to convert FLV, MPG, AVI and 3GP Video using FFMPEG
This mini howto just show you the easy of use ffmpeg to convert any video format to another video format.
First, I show you how to convert FLV video to mp4 format:
ffmpeg -i input-file.flv -vcodec h264 -r 25 -b 200 -ab 128 -acodec mp3 -ac 2 -ar 44100 output-file.mp4
Here is how we convert from MPG video to 3GP format:
ffmpeg -i video_clip.mpg -s qcif -vcodec h263 -acodec mp3 -ac 1 -ar 8000 -ab 32 -y clip.3gp
And this is how we convert from AVI video to 3GP format
ffmpeg -i input-clip.avi-s qcif -vcodec h263 -acodec mp3 -ac 1 -ar 8000 -r 25 -ab 32 -y output-file.3gp
And finaly, how to convert from 3GP video to AVI video
ffmpeg -i clip.3gp -f avi -vcodec xvid -acodec mp3 -ar 22050 file.avi
Writen by amrinz
Permalinks: How to convert FLV, MPG, AVI and 3GP Video using FFMPEG

Nyari CD/DVD Linux, BSD, software free? Ayo belanja di warung linux kami. Setiap pembelian anda mendukung kelangsungan website ini
Ayo berlangganan berita tutorial terbaru dari website Open Community Tutorial langsung di email anda!

June 16th, 2009 at 6:25 pm
Mau lebih enak lagi pake GUI nya mas namanya WINFF lebih user friendly terutama buat yang baru migrasi ke linux info lengkap http://winff.org/html/
June 22nd, 2009 at 1:20 pm
Unknown encoder h263 dan h264, apa yg perlu dilakukan?
Sy ingin convert ke 3gp, jika pakai winff, tidak terdapat opsi convert ke 3gp.
ada saran?