Erro libx264 não encontrado

9

Eu sigo este guia de instalação . Na etapa 3 (Instalar dependências):

  

sudo ./licode/scripts/installUbuntuDeps.sh no terminal

Mas enquanto compila, lança error libx264 not found Por que recebi este erro e como resolvê-lo?

    
por Muath 10.06.2014 / 10:07

3 respostas

5

Isso acontece porque você está compilando a libav com --enable-libx264 , que precisaria dos cabeçalhos da libx264 para ser concluída. Ele falha na fase de configuração com:

configure: error: libx264 not found

Isso pode ser corrigido facilmente instalando o pacote de cabeçalhos necessário libx264-dev , o que deve ser feito com sudo apt-get install yasm libvpx. libx264. , mas, por algum motivo, não é para você:

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.
    
por Braiam 11.06.2014 / 14:47
1

inclui --enable-static - disable-opencl

por exemplo -

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
    
por Rajnesh Thakur 29.07.2014 / 11:30
0

AS 123456 disse usar sudo apt-get install libx264-142 libx264-dev

Isto irá instalar a libx264 que lhe deu o erro.

    
por Ahmad 10.06.2014 / 19:27