Converting videos using FFMpeg
I needed to convert video from a .mov format to .flv format, and doing it all automatically on my server.
I came across FFMPeg, that is the industry standard solution to messing around with video files on a linux based system.
After a brief installation process I’ve started converting my files using the following command:
ffmpeg -i OrignalFile.mov -deinterlace -ar 44100 -r 25 -qmin 3 -qmax 6 OutputFile.flv
This took about 30 seconds to convert a 720p .mov file to .flv format in a superb quality.
The Above command will convert a .mov file to .flv file in the same resultion the .mov file is, use high quality audio, with 25 frames per second. and set the quality between 3 and 6, which will give out good results with for viewing on the web site.
For more information about FFMpeg read here.

