View Single Post
Old 18th August 2012, 14:02   #13  |  Link
easyfab
Registered User
 
Join Date: Jan 2002
Posts: 332
As said in a previous thread the simplest for you is to go here : http://ffmpeg.zeranoe.com/builds/
and to download the External Libraries Source Code that you want to add.
After that compile them ( do a ./configure --help to see the options ) and add --enable-libXXX when you compile ffmeg.

I give you an other example with libx264 so that you can encode x264+aac. for others libs try or google.

cd "your x264 directory"
./configure --prefix=/mingw/i686-w64-mingw32 --disable-cli --enable-static --disable-gpac --disable-swscale --enable-win32thread --enable-strip
make -j4
make install


and for ffmpeg

cd ffmpeg
PKG_CONFIG_PATH=/mingw/i686-w64-mingw32 /lib/pkgconfig/ ./configure --prefix=/mingw/i686-w64-mingw32 --enable-libfdk-aac --enable-avisynth --enable-libx264 --enable-gpl --enable-version3 --enable-nonfree --enable-w32threads --enable-memalign-hack
make -j4
easyfab is offline   Reply With Quote