Difference between revisions of "Ffmpeg"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
Line 10: Line 10:
 
* list all available formats
 
* list all available formats
 
  ffmpeg -formats
 
  ffmpeg -formats
 +
* convert ''input.dv'' to ''output.mpg''
 +
ffmpeg -i ''input.dv'' ''output.mpg''
  
 
= See also =
 
= See also =
 
* [http://linux.die.net/man/1/ffmpeg ffmpeg man page]
 
* [http://linux.die.net/man/1/ffmpeg ffmpeg man page]

Revision as of 09:27, 5 November 2011

ffmpeg is a program that allows you to do video conversion.

Get it

To download, compile, link and install ffmpeg, open a console and enter

svn co svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
cd ffmpeg
./configure && make && make install

Use it

  • list all available formats
ffmpeg -formats
  • convert input.dv to output.mpg
ffmpeg -i input.dv output.mpg

See also