How can I resolve gstreamer dependencies in Ubuntu

68,140

Solution 1

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

which you could have found by doing a search for gstreamer-app-0.10.pc in package contents on packages.ubuntu.com or with apt-file search, or by running the whole configuration process within auto-apt run.

Solution 2

libgstreamer0.10-dev doesnt seems to work in Ubuntu 18/19 but I tried the 1.0 version like this:

sudo apt install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev

Just in case anyone needs to know

Solution 3

Try

apt-get install libgstreamer*
Share:
68,140

Related videos on Youtube

Gary
Author by

Gary

Updated on September 17, 2022

Comments

  • Gary
    Gary over 1 year

    Can you please tell me how can I resolve these dependencies on 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
    

    I have tried:

    $ 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
    
  • Mr. Xymon
    Mr. Xymon about 14 years
    Thanks . I tried that. But still same error. I have tried '$ sudo apt-get install libgstreamer*-dev' but it does not work.
  • quack quixote
    quack quixote about 14 years
    michael, you need to associate your accounts in your user profile (see meta.stackexchange.com/questions/18232/…). then you'll regain ownership of this question.
  • YumYumYum
    YumYumYum over 12 years
    Tried this too, but cant install or find decklinksrc
  • SSumner
    SSumner over 10 years
    This worked for me on Ubuntu 12.04
  • Wojciech Zylinski
    Wojciech Zylinski over 10 years
    This also worked for me on Ubuntu 13.10 and your answer should be marked as the correct one.
  • neo1691
    neo1691 about 10 years
    This worked for me on debian! :)
  • nevil david
    nevil david almost 10 years
    This worked for me on Ubuntu 14.04
  • Kun Ren
    Kun Ren over 8 years
    This worked for me on Ubuntu 15.10
  • Tom
    Tom over 7 years
    This worked for me Ubuntu 16.04 :)
  • tatsu
    tatsu almost 5 years
    no longer works with ubuntu 18.04 and ubuntu 19.04 :(