Thursday, October 13, 2011

Convert 3gp to AVI

Converting a 3gp file in mobile to AVI in Ubuntu.

1) Install mencoder. (Must have repositories multiverse)
Type in terminal:
sudo apt-get install mencoder

2) At Command Line:

Converting a slingle file:

mencoder yourmovie.3gp -ovc lavc -lavcopts vcodec=msmpeg4v2 -oac mp3lame -lameopts vbr=3 -o yourmovie.avi


For converting multiple files in to one avi:

mencoder *.3gp -ovc lavc -lavcopts vcodec=msmpeg4v2 -oac mp3lame -lameopts vbr=3 -o *.avi

(This will add all the 3gp videos to 1 AVI file (same name as the first 3gp file with extension avi)

No comments:

Post a Comment

Please be courteous, even if you do not share the same view.