Como posso resolver dependências do gstreamer no Ubuntu

26

Você pode me dizer como posso resolver essas dependências no Ubuntu:

checking for GSTREAMER... configure: error: Package requirements (gstreamer-0.10 >= 0.10
                     gstreamer-app-0.10
                     gstreamer-base-0.10
                     gstreamer-pbutils-0.10
                     gstreamer-plugins-base-0.10 >= 0.10.25
                     gstreamer-video-0.10) were not met:

No package 'gstreamer-app-0.10' found
No package 'gstreamer-pbutils-0.10' found
No package 'gstreamer-plugins-base-0.10' found
No package 'gstreamer-video-0.10' found

Eu tentei:

$ sudo apt-get install *gstreamer-video*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Regex compilation error - Invalid preceding regular expression
$ sudo apt-get install *gstreamer-app*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Regex compilation error - Invalid preceding regular expression
$ sudo apt-get install *gstreamer-base*
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Regex compilation error - Invalid preceding regular expression
    
por michael 28.03.2010 / 01:48

3 respostas

53

$ apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev

que você poderia ter encontrado fazendo uma busca por gstreamer-app-0.10.pc no conteúdo do pacote em packages.ubuntu.com ou com apt-file search , ou executando todo o processo de configuração em auto-apt run .

    
por 28.03.2010 / 05:11
1

Tente

apt-get install libgstreamer*
    
por 28.03.2010 / 03:18
0

Eu tentei que '$ apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev'

Mas agora dizia:

Requested 'gstreamer-plugins-base-0.10 >= 0.10.25' but version of GStreamer Base Plugins Libraries is 0.10.18
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GSTREAMER_CFLAGS
and GSTREAMER_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

Então faça o download e 'make install' gstreamer em / home / michael / bin (./configure --prefix- / home / michael / bin).

E o que eu defini

$ echo $PKG_CONFIG_PATH
/home/novarra/bin/lib/pkgconfig
$ echo $GSTREAMER_LIBS
/home/scheung/bin/lib/pkconfig

E execute novamente ./autogen.sh --enable-debug

Eu configurei para obter o mesmo 'Solicitado' gstreamer-plugins-base-0.10 > = 0.10.25 'mas a versão das Bibliotecas de Plug-ins de Base do GStreamer é 0.10.18'

    
por 28.03.2010 / 22:41