Is there Script that can automatally converts video to .FLV. Basically we upload videos and then converts it to .FLV then to the website. I already have the website.
1. Your web hosting account must support ffmpeg usage 2. You need a script which will automatically send command to ffmpeg to convert some specific video to flv file 3. {optional} if your web hosting company is running an older version of ffmpeg (that doesn't automatically save metadata into flv file) then you will need to use some additional tools to save metadata IF your video is to be displayed in your web pages in some kind of a flash player. I hope this points you to the right direction to investigate further.
I am sharing one code with you. It may help you. Put below code in your terminal: $>cd /your/path/to/videos $>for i in *.mp4; do ffmpeg -i $i -ar 44100 $i.flv; done