¿Cómo puedo resolver las dependencias de gstreamer en Ubuntu

26

¿Me puede decir cómo puedo resolver estas dependencias en 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

Yo he tratado:

$ 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
Miguel
fuente

Respuestas:

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

que podría haber encontrado haciendo una búsqueda gstreamer-app-0.10.pcen el contenido del paquete en packages.ubuntu.com o con apt-file search, o ejecutando todo el proceso de configuración dentro auto-apt run.

efímero
fuente
Esto funcionó para mí en Ubuntu 13.04
freddyb
Esto funcionó para mí en Ubuntu 12.04
SSumner
Esto también funcionó para mí en Ubuntu 13.10 y su respuesta debería estar marcada como correcta.
Voitek Zylinski el
¡Esto funcionó para mí en Debian! :)
neo1691
2
Esto funcionó para mí en Ubuntu 14.04
tkcsam
1

Tratar

apt-get install libgstreamer*
Armandino
fuente
Gracias . Lo intenté Pero sigue siendo el mismo error. He intentado '$ sudo apt-get install libgstreamer * -dev' pero no funciona.
Intenté esto también, pero no puedo instalar o encontrar decklinksrc
YumYumYum
0

He intentado que '$ apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev'

Pero ahora decía:

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.

Entonces descargue y 'make install' gstreamer en / home / michael / bin (./configure --prefix- / home / michael / bin).

Y la he puesto

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

Y vuelva a ejecutar ./autogen.sh --enable-debug

Configuré obtener el mismo 'Solicitado' gstreamer-plugins-base-0.10> = 0.10.25 'pero la versión de GStreamer Base Plugins Libraries es 0.10.18'

Miguel
fuente
Michael, debe asociar sus cuentas en su perfil de usuario (consulte meta.stackexchange.com/questions/18232/… ). entonces recuperarás la propiedad de esta pregunta.
quack quijote