# HG changeset patch # User Oleksandr Gavenko # Date 1238100482 -7200 # Node ID 4e65a262e8211cd7cbe5204ab36cc9a06daaddf3 # Parent cebb71ea726091e83b246fea5314569338cbd95c How convert .3gp to .avi(mpeg)? diff -r cebb71ea7260 -r 4e65a262e821 video-file.rst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/video-file.rst Thu Mar 26 22:48:02 2009 +0200 @@ -0,0 +1,23 @@ +-*- outline -*- + +* Players for linux? + + $ sudo apt-get install vlc +or + $ sudo apt-get install mplayer + +* How convert .3gp to .avi(mpeg)? + +First install convertor: + + $ sudo apt-get install ffmpeg + +Then do: + + $ ffmpeg -i video-in.3gp -b 250 -s 160×120 -r 15 -f avi -an video-out.avi +or + $ mencoder -oac mp3lame -ovc lavc -o video-out.avi -vf pp,2xsai,scale video-in.3gp +or + $ mencoder -o video-in.avi -vf pp,2xsai,scale -ovc lavc video-out.3gp +or + $ mencoder -o video-in.avi -vf rotate=2 -oac pcm -ovc divx4 video-out.3gp