标签:tps content pil pac 成功 centos from code 否则
yum install yasm
git clone git://git.videolan.org/x264.git cd x264 ./configure --enable-static --enable-shared make make install
make install 应该出现以下的画面说明成功安装了。
3、使用最新的ffmpeg源代码编译
在ffmpeg官网下载最新的代码https://www.ffmpeg.org/download.html
git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg cd ffmpeg #编译成动态库 ./configure --enable-shared --disable-static --enable-memalign-hack --enable-libx264 --enable-gpl --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib --enable-pthreads #编译成静态库 ./configure --enable-static --disable-shared --enable-memalign-hack --enable-libx264 --enable-gpl --extra-cflags=-I/usr/local/include --extra-ldflags=-L/usr/local/lib --enable-pthreads
參考资料:
1、http://www.helyar.net/2010/how-to-compile-ffmpeg-from-source/
标签:tps content pil pac 成功 centos from code 否则
原文地址:http://www.cnblogs.com/cxchanpin/p/6943221.html