-
dark_ixion
-
RE: Video Converter for Ubuntu !!!
-
ffmpeg is a very powerful tool. I know it's a command-line app, and it's man page is huge, but you might find examples of good settings scattered around the net.
Here's an example I found immediately for 3gp encoding:
[code]ffmpeg -i inputfile.avi -s qcif -vcodec h263 -acodec aac
-ac 1 -ar 8000 -r 25 -ab 32 -y outputfile.3gp[/code]
-
15 May 09
ffmpeg is a very powerful tool. I know it's a command-line app, and it's man page is huge, but you might find examples of good settings scattered around the net.
Here's an example I found immediately for 3gp encoding:
ffmpeg -i inputfile.avi -s qcif -vcodec h263 -acodec aac
-ac 1 -ar 8000 -r 25 -ab 32 -y outputfile.3gp