NÃO foi possível encontrar o FFmpeg (faltando: swresample) (versão encontrada “56.1.0”)

0

Eu tento instalar o obs (Open Broadcaster Software) no meu Kali Linux 2.

Eu sigo esta instrução . Eu não tenho problema até o edifício obs:

cmake -DUNIX_STRUCTURE=1 -DCMAKE_INSTALL_PREFIX=/usr ..

Onde recebo este erro:

Could NOT find FFmpeg (missing: swresample) (found version "56.1.0")

Eu encontrei este tópico mas não posso usar este comando:

apt-get -t jessie-backports install libswresample-dev

Porque estou no Kali Linux.

Esta é a saída do comando ffmpeg :

ffmpeg version N-79093-g7916f04 Copyright (c) 2000-2016 the FFmpeg developers
  built with gcc 4.9.2 (Debian 4.9.2-10)
  configuration: --prefix=/root/ffmpeg_build --pkg-config-flags=--static --extra-cflags=-I/root/ffmpeg_build/include --extra-ldflags=-L/root/ffmpeg_build/lib --bindir=/root/bin --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree
  libavutil      55. 19.100 / 55. 19.100
  libavcodec     57. 28.103 / 57. 28.103
  libavformat    57. 28.102 / 57. 28.102
  libavdevice    57.  0.101 / 57.  0.101
  libavfilter     6. 39.102 /  6. 39.102
  libswscale      4.  0.100 /  4.  0.100
  libswresample   2.  0.101 /  2.  0.101
  libpostproc    54.  0.100 / 54.  0.100
Hyper fast Audio and Video encoder
usage: ffmpeg [options] [[infile options] -i infile]... {[outfile options] outfile}...

Use -h to get full help or, even better, run 'man ffmpeg'
    
por sushi 05.08.2016 / 23:04

1 resposta

2

Para instalar um pacote de Backports você precisa editar o seu sources.list :

echo 'deb http://http.debian.net/debian jessie-backports main' > /etc/apt/sources.list.d/jessie-backports.list

Em seguida, instale o pacote necessário:

apt-get update
apt-get -t jessie-backports install libswresample-dev

NB

Backports cannot be tested as extensively as Debian stable, and backports are provided on an as-is basis, with risk of incompatibilities with other components in Debian stable. Use with care!

    
por 10.08.2016 / 12:05