web-dev-qa-db-fra.com

Comment résoudre les dépendances de gstreamer dans Ubuntu

Pouvez-vous s'il vous plaît me dire comment puis-je résoudre ces dépendances sur 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

J'ai essayé:

$ 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
26
michael
 $ apt-get install  libgstreamer0.10-devlibgstreamer-plugins-base0.10- dev

que vous auriez pu trouver en effectuant une recherche de gstreamer-app-0.10.pc dans le contenu du paquet sur packages.ubuntu.com ou avec apt-file search, ou en exécutant l’ensemble du processus de configuration auto-apt run.

53
ephemient

Essayer

apt-get install libgstreamer*
1
armandino

J'ai essayé cela '$ apt-get install libgstreamer0.10-dev libgstreamer-plugins-base0.10-dev'

Mais il disait maintenant:

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.

Alors téléchargez et installez gstreamer dans/home/michael/bin (./configure - préfixe// home/michael/bin).

Et le j'ai mis

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

Et relancez ./autogen.sh --enable-debug

Je mets la même requête 'demandée' gstreamer-plugins-base-0.10> = 0.10.25 'mais la version de GStreamer Base Plugins Libraries est 0.10.18'

0
michael