AVI to FLV
Convert from AVI to Flash Video
After you have converted your movie from DVD9toAVI now you can convert the avi files to flash videos. To do that you run this command:
ffmpeg -i input.avi -ab 56 -ar 22050 -b 500000 -r 15 -s 540x360 output.flv or ffmpeg -i myweddingvideo.avi -ab 56 -ar 22050 -b 500000 -r 15 -s 540x360 myweddingvideo.flv
- If you want to do it in batch you can run this command.
for i in *.avi;do ffmpeg -i $i -ab 56 -ar 22050 -b 500000 -r 15 -s 540x360 `echo $i| sed 's/.avi/.flv/g'`;done
Create website
You can get the flash player from this website http://flowplayer.org/
- Then just modify the index.html example file to appropriate paths.