09.19converting movies with ffmpeg
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
then you can convert videos simply with this command..
CODE:
-
ffmpeg -i teaser_hi.mov -b 400 teaser_hi.flv
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
I still have to understand these options..

Leave a Reply