1、编译x264
下载:http://www.videolan.org/developers/x264.html
编译:./configure --disable-asm --enable-static --enable-shared
(一定要添加--enable-static --enable-shared 这样会生成动态库和静态库)
make;make install
如果报错:
ERROR: libx264 must be installed and version must be >= 0.118.
一定需要把电脑里面之前的版本给删除掉,在/usr 或者/usr/local下,在编译x264的时候加--enable-static --enable-shared,如果不加
下载:http://www.videolan.org/developers/x264.html
编译:./configure --disable-asm --enable-static --enable-shared
(一定要添加--enable-static --enable-shared 这样会生成动态库和静态库)
make;make install
(intsall 会到 /usr/local/目录下面,编译的时候添加一句--prefix=/usr)
如果报错:error while loading shared libraries: libx264.so.140
就是动态库没有找到,可以指定库路径,或者把库放到usr/lib下面。
如果报错:
ERROR: libx264 must be installed and version must be >= 0.118.
一定需要把电脑里面之前的版本给删除掉,在/usr 或者/usr/local下,在编译x264的时候加--enable-static --enable-shared,如果不加