How convert .3gp to .avi(mpeg)?
authorOleksandr Gavenko <gavenkoa@gmail.com>
Thu, 26 Mar 2009 22:48:02 +0200
changeset 55 4e65a262e821
parent 54 cebb71ea7260
child 56 24f1a6ce1a72
How convert .3gp to .avi(mpeg)?
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