错误 libx264 未找到

错误 libx264 未找到

我按照这个安装指导. 在步骤 3(安装依赖项):

sudo ./licode/scripts/installUbuntuDeps.sh在终端

但是在编译时会抛出error libx264 not found为什么我收到此错误,以及如何解决它?

答案1

发生这种情况是因为您正在编译 libav,而--enable-libx264libav 需要 libx264 标头才能完成。它在配置阶段失败,如下所示:

configure: error: libx264 not found

可以通过安装所需的标题包轻松修复libx264-dev此问题sudo apt-get install yasm libvpx. libx264.,但由于某种原因,它不适合你:

sudo apt-get install yasm libvpx. libx264.
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'libvpx-doc' for regex 'libvpx.'
Note, selecting 'libvpx1-dbg' for regex 'libvpx.'
Note, selecting 'libvpx-dev' for regex 'libvpx.'
Note, selecting 'libvpx1' for regex 'libvpx.'
Note, selecting 'libx264-133' for regex 'libx264.'
Note, selecting 'libx264-142' for regex 'libx264.'
Note, selecting 'libx264-dev' for regex 'libx264.'
libvpx-dev is already the newest version.
libvpx1 is already the newest version.
libvpx1 set to manually installed.
yasm is already the newest version.
libx264-142 is already the newest version.
libx264-142 set to manually installed.
libx264-dev is already the newest version.
The following NEW packages will be installed:
  libvpx-doc libvpx1-dbg
0 upgraded, 2 newly installed, 0 to remove and 24 not upgraded.
Need to get 1,613 kB of archives.
After this operation, 8,027 kB of additional disk space will be used.
Do you want to continue? [Y/n] n
Abort.

答案2

包括--启用静态--禁用opencl

例如-

cd ~/ffmpeg_sources
wget http://download.videolan.org/pub/x264/snapshots/last_x264.tar.bz2
tar xjvf last_x264.tar.bz2
cd x264-snapshot*
PATH="$PATH:$HOME/bin" ./configure --prefix="$HOME/ffmpeg_build" --bindir="$HOME/bin" --enable-static **--disable-opencl**
PATH="$PATH:$HOME/bin" make
make install
make distclean

答案3

作为123456所述用途sudo apt-get install libx264-142 libx264-dev

这将安装导致错误的 libx264。

相关内容