December 13, 2012

how to convert FLV video to MP4 using FFMPEG

converting videos from FLV to MP4 can be done easily using FFMPEG with this little command.

ffmpeg -i video_source.FLV -vcodec libx264 -ar 22050 video_output.mp4

FFMPEG is a nice little tool to do anything that want with your multimedia files. have fun!