Mopidy extension for scrobbling played tracks to Last.fm.
This extension requires a free user account at Last.fm.
Install by running:
pip install Mopidy-Scrobbler
Or, if available, install the Debian/Ubuntu package from apt.mopidy.com.
The extension is enabled by default when it is installed. You just need to add
your Last.fm username and password to your Mopidy configuration file, typically
found at ~/.config/mopidy/mopidy.conf
:
[scrobbler] username = alice password = secret
The following configuration values are available:
scrobbler/enabled
: If the scrobbler extension should be enabled or not.scrobbler/username
: Your Last.fm username.scrobbler/password
: Your Last.fm password.
- Original author: Stein Magnus Jodal
- Current maintainer: Stein Magnus Jodal
- Contributors
- Require pylast >= 1.6.0, which is the version packed in Debian stable.
- Fix compatability with pylast >= 2, which has removed the
ScrobblingError
exception type.
- Updated to work with
None
as the default value oftrack_no
in Mopidy'sTrack
model. This was changed in Mopidy 0.19.5. (Fixes: #7)
- Updated extension API to match Mopidy 0.18.
- Moved extension out of the main Mopidy project.
- Added test suite.