6

I have a premium Spotify account and wish to use this account via the Clementine Music Player 1.1.1. program. But when I go to the Configure Spotify tab in that program, the plugin is stated as not installed and there's also no option to do so.

Can you please advise?

2 Answers2

2

I Finally got the plugin to be recognized by Clementine.

Adding to coteyrs answer, here is what I did:

  1. Create the folder where the plugin will be placed

    mkdir -p ~/.config/Clementine/spotifyblob/version14-64bit
    
  2. Download the plugin

    cd ~/.config/Clementine/spotifyblob/version14-64bit
    wget http://spotify.clementine-player.org/version14-64bit/blob
    wget http://spotify.clementine-player.org/version14-64bit/libspotify.so.12.1.45
    
  3. Make sure the executable bit is set on the blob

    chmod +x blob
    
  4. The blob was looking for libspotify.12, so we create a symlink

    ln -s libspotify.so.12.1.45 libspotify.so.12
    
bobbaluba
  • 345
1

Direct from the clementine site..

You can download the latest version of Clementine on Ubuntu from the official PPA.

Run these commands in the terminal:

sudo add-apt-repository ppa:me-davidsansome/clementine
sudo apt-get update
sudo apt-get install clementine

You will need to do this if you want the latest (or non-open) features.

Once you have updated if your still missing the plugin download button you can install manually. Instructions are here. You can download the plugin from this directory. Just put the blob and the plugin in ~/.config/Clementine/spotifyblob

coteyr
  • 18,724