spop is a Spotify client that works as a daemon (similar to the famous MPD). It is designed to be as simple and straightforward as possible: run it, control it with your keyboard and a few scripts, and just forget about it.
- Works as a daemon: no GUI, just start it, it will run in the background and do what you want it to do. Your music won't stop playing if your X server crashes!
- Uses libspotify: stable, reliable. Not free (a Spotify premium account is required), but quite cheap.
- Written in plain C: as lightweight as possible, only 300 kB when compiled with debugging symbols...
- Few dependencies: only requires libspotify, Glib, JSON-GLib and libao (or libsox; not required for OSS audio output).
- Powerful audio effects: when using libsox, you can apply various effects to the audio output: equalisation, normalisation, reverb, "karaoke", etc. SoX is the Swiss Army knife of sound processing!
- Powerful plugin system: you can write your own plugin in a few dozens lines of code.
- Simple protocol: open a TCP connection to the daemon, write a simple plain-text command, get an easily parsable JSON output.
- Portable: designed to be platform-agnostic, it should work on any platform supported both by Glib and libspotify. (But so far it has only been tested on Linux and Apple OS X)
- Free software: the source code is available under the terms of the GNU GPLv3 license (or, at your option, any later version), with an exception allowing to distribute code linked against libspotify. Everyone is welcome to contribute!
Right now, several plugins are available:
- notify: use libnotify for desktop notifications
- savestate: keep the current state (queue, current track, etc.) when stopping and restarting spop
- scrobble: scrobble your music to LastFM or LibreFM (requires libsoup)
- awesome: keep an eye on your player in Awesome, an extremely powerful window manager
- mpris2: support the MPRIS2 standard to control spopd like any other media player from your desktop or using the multimedia keys on your keyboard (work in progress)
-
Install libspotify (preferably using your favorite package manager)
-
Download spop's source code:
git clone git://github.com/Schnouki/spop.git
-
Prepare your configuration file:
mkdir -p ~/.config/spop cp spop/spopd.conf.sample ~/.config/spop/spopd.conf nano ~/.config/spop/spopd.conf
-
Compile and run spop:
cd spop ./build_and_run -fv
-
Connect to the daemon and issue some commands:
telnet localhost 6602
-
If you want something more GUI-like, you can use
dspop
, which uses either dmenu or rofi:./dspop/dspop
Or, on Linux, you can enable the
mpris2
plugin in the configuration file and use the media controls integrated with some desktop environments. -
If you want a really nice web interface, have a look at spop-web by Xemle.
If you want to install spop somewhere on your system, do the following steps:
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/where/to/install ..
make
sudo make install
Add Mopidy APT repository for libspotify
from https://github.com/mopidy/libspotify-deb
:
wget -q -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -
echo -e "deb http://apt.mopidy.com/ stable main contrib non-free\ndeb-src http://apt.mopidy.com/ stable main contrib non-free" | sudo tee /etc/apt/sources.list.d/mopidy.list
sudo apt-get update
Install required libraries via apt-get
:
sudo apt-get install libjson-glib-dev libao-dev libdbus-glib-1-dev libnotify-dev libsoup2.4-dev libsox-dev libspotify-dev
Install libspotify with Homebrew:
brew install https://raw.github.com/mopidy/homebrew-mopidy/master/libspotify.rb
At the moment, spop can not modify your playlists, so you will have to use the official Spotify client to manage them.
Except for that, the following commands are available:
help
: list all available commands
ls
: list all your playlistsls pl
: list the contents of playlist numberpl
qls
: list the contents of the queueqclear
: clear the contents of the queueqrm tr
: remove track numbertr
from the queueqrm tr1 tr2
: remove trackstr1
totr2
from the queue
add pl
: add playlist numberpl
to the queueadd pl tr
: add track numbertr
from playlist numberpl
to the queueplay pl
: replace the contents of the queue with playlistpl
and start playingplay pl tr
: replace the contents of the queue with tracktr
from playlistpl
and start playing
uinfo uri
: display information about the given Spotify URIuadd uri
: add the given Spotify URI to the queue (playlist, track or album only)uplay uri
: replace the contents of the queue with the given Spotify URI (playlist, track or album only) and start playinguimage uri
: get the cover image for given uri (base64-encoded JPEG image). Uri must be an track or album uri.uimage uri size
: get the cover image for given uri (base64-encoded JPEG image). Uri must be an track or album uri. Use 0 for normal size (300px), 1 for small size (64px) and 2 for large size (640px).
search query
: perform a search with the given query
play
: start playing from the queuetoggle
orpause
: toggle pause modestop
: stop playbackseek pos
: go to positionpos
(in milliseconds) in the current tracknext
: switch to the next track in the queueprev
: switch to the previous track in the queuegoto tr
: switch to track numbertr
in the queuerepeat
: toggle repeat modeshuffle
: toggle shuffle mode
status
: display informations about the queue, the current track, etc.idle
: wait for something to change (pause, switch to other track, new track in queue...), then displaystatus
. Mostly useful in notification scripts.notify
: unlock all the currently idle sessions, just like if something had changed.image
: get the cover image for the current track (base64-encoded JPEG image).offline-status
: display informations about the current status of the offline cache (number of offline playlists, sync status...).offline-toggle pl
: toggle offline mode for playlist numberpl
.
star
: toggle the "starred" status of the current trackustar uri val
: set the "starred" status of all the tracks in the given URI (playlist, track or album) toval
(0 or 1)
bye
: close the connection to the spop daemonquit
: exit spop
This doc is probably lacking a gazillion useful informations, so feel free to ask me if you have any question regarding spop!
- On GitHub: https://github.com/inbox/new/Schnouki
- By e-mail: <
my_nickname@my_nickname.net
> (by the way, my nickname is "Schnouki") - On Twitter: http://www.twitter.com/Schnouki