Convert avi to 3gp using ffmpeg

aviffmpegmpeg-4

I want to convert an avi file to 3gp with codec as mpeg4 simple profile level 0.But i am not able to do it with ffmpeg,it gives this error-Requested output format ‘-vcodec’ is not a suitable output format.how to fix this help!thanks in advance
note – the input avi is 720×480 generated from bmp images using ffmpeg with codec ffv1.the output 3gp should be of mpeg4 simple profile level 0

Best Answer

Original from: http://forum.videohelp.com/threads/322328-libfaac-encoding-with-ffmpeg

This worked for me:

tools/ffmpeg/./ffmpeg -i debug/assets/videos/sample_iPod.mp4 -acodec libvo_aacenc -vcodec libx264 debug/assets/videos/sample_iPod.3gp
Related Topic