Hi.
I’m doing a little bit of research on converting movies with ffmpeg on linux (ubuntu).
first install ffmpeg and mplayer :
[code]
sudo apt-get ffmpeg mplayer
[/code]
then you can convert videos simply with this command..
[code]
ffmpeg -i teaser_hi.mov -b 400 teaser_hi.flv
[/code]
the -i is the input file
the -b is the bitrate.. in kpbs
now to generate thumbnails of a movie
[code]
ffmpeg -i teaser_hi.mov -y -s 320x240 -r 0.05 %d.jpg
[/code]
I still have to understand these options..