Register now and start sharing your code snippets.
-->
Create an flv movie
Shell Script (Bash) posted about 1 year ago by marko
Create an flv movie that is 320 wide by 240 high. For audio functionality ffmpeg needs to be compiled with the following parameters:
1 --enable-amr_nb 2 --enable-amr_nb-fixed 3 --enable-amr_wb 4 --enable-mp3lame
The snippet itself:
1 ffmpeg -i mymovie.avi -s 320x240 -ar 44100 -r 12 mymovie.flv