Building ffmpeg from SVN

Wednesday, December 31, 2008 Posted by Psyk 0 comments
A couple of quick notes to build ffmpeg from svn under Fedora.

$svn checkout svn://svn.ffmpeg.org/ffmpeg/trunk ffmpeg
$cd ffmpeg
$./configure --prefix=/usr --incdir=/usr/include/ffmpeg --libdir=/usr/lib64 --shlibdir=/usr/lib64 --mandir=/usr/share/man --arch=x86_64 --enable-libdc1394 --enable-libfaac --enable-libfaad --enable-libgsm --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-x11grab --enable-avfilter --enable-avfilter-lavf --enable-postproc --enable-swscale --enable-pthreads --disable-static --enable-shared --enable-gpl --disable-debug --disable-optimizations --disable-stripping
$make
$su -
Password:
#make install


I basically used the same configure parameters (or as close too) as the original rpm packaged fedora build from rpmfusion. Satisfy the missing library requests if any errors come up after running the 'configure' script. Typically it will just be installing the 'devel' versions of the package.
Labels: