如何解决 Ubuntu 中的 gstreamer 依赖项

mic*_*ael 27 package-management gstreamer ubuntu-8.04

你能告诉我如何解决这些对 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
Run Code Online (Sandbox Code Playgroud)

我试过了:

$ 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
Run Code Online (Sandbox Code Playgroud)

eph*_*ent 56

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

您可以通过gstreamer-app-0.10.pcpackages.ubuntu.com或 with上搜索包内容apt-file search或通过在auto-apt run.

  • 这在 Ubuntu 14.04 上对我有用 (2认同)

小智 1

尝试

apt-get install libgstreamer*
Run Code Online (Sandbox Code Playgroud)