Difference between revisions of "Ffmpeg"

From Linuxintro
imported>ThorstenStaerk
(Created page with "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....")
 
imported>ThorstenStaerk
Line 6: Line 6:
 
  [[cd]] ffmpeg
 
  [[cd]] ffmpeg
 
  ./[[configure]] [[&&]] [[make]] && make [[install]]
 
  ./[[configure]] [[&&]] [[make]] && make [[install]]
 +
 +
= See also =
 +
* [http://linux.die.net/man/1/ffmpeg ffmpeg man page]

Revision as of 04:53, 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

See also