Open Source Spotify client library
Go to file
2019-11-26 21:16:15 +00:00
audio Hide waiting for download message during seek. 2019-11-11 19:00:19 +11:00
cache Fixes compilation errors 2015-12-18 19:59:10 +00:00
connect libmdns 0.2.4 2019-11-26 21:16:15 +00:00
contrib Merge pull request #390 from ashthespy/crossbuild 2019-11-04 15:21:34 +01:00
core Run cargo fmt for my code. 2019-11-11 18:22:41 +11:00
docs Change documentation to reflect code behavior 2018-07-03 13:07:29 +02:00
examples Fix play.rs example 2019-10-09 18:18:38 +02:00
metadata Add version numbers for all librespot crates 2019-11-06 16:59:40 +01:00
playback Run cargo fmt for my code. 2019-11-11 18:22:41 +11:00
protocol Add description and license to Cargo.toml for each crate 2019-11-06 16:50:26 +01:00
src Revert "Fix play.rs example (#379)" 2019-10-09 18:05:08 +02:00
.dockerignore Remove contrib from .dockerignore 2018-11-03 16:20:52 +01:00
.gitignore Somewhat uniform coding style might help myself to better understand Rust :-) 2018-02-11 06:32:07 +01:00
.travis.yml Merge remote-tracking branch 'origin/dev' into dynamic-blocks-kdev 2019-11-11 18:28:02 +11:00
Cargo.lock libmdns 0.2.4 2019-11-26 21:16:15 +00:00
Cargo.toml Merge pull request #396 from ashthespy/bloat 2019-11-12 11:01:35 +01:00
COMPILING.md [ci skip] Link to Compiling in Readme 2019-11-15 11:53:50 +01:00
CONTRIBUTING.md [ci skip] Break out Compiling into COMPILING.md 2019-11-12 11:09:24 +01:00
LICENSE Initial commit. 2015-04-25 21:32:07 +01:00
publish.sh Uncommented branch switch. 2019-11-09 15:21:12 +01:00
PUBLISHING.md Add publish.sh script for creating new version, update PUBLISHING.md 2019-11-09 15:19:30 +01:00
README.md Merge pull request #395 from xMordax/dev 2019-11-24 23:12:55 +01:00
rustfmt.toml Add rustfmt.toml 2018-02-11 12:33:00 +01:00

Build Status Gitter chat Crates.io

Current maintainer is @awiouy folks.

librespot

librespot is an open source client library for Spotify. It enables applications to use Spotify's service, without using the official but closed-source libspotify. Additionally, it will provide extra features which are not available in the official library.

Note: librespot only works with Spotify Premium. This will remain the case for the foreseeable future, as we are unlikely to work on implementing the features such as limited skips and adverts that would be required to make librespot compliant with free accounts.

Quick start

We're available on crates.io as the librespot package. Simply run cargo install librespot to install librespot on your system. Check the wiki for more info and possible usage options.

After installation, you can run librespot from the CLI using a command such as librespot -n "Librespot Speaker" -b 160 to create a speaker called Librespot Speaker serving 160kbps audio.

This fork

As the origin by plietar is no longer actively maintained, this organisation and repository have been set up so that the project may be maintained and upgraded in the future.

Documentation

Documentation is currently a work in progress, contributions are welcome!

There is some brief documentation on how the protocol works in the docs folder,

COMPILING.md contains detailed instructions on setting up a development environment, and compiling librespot. More general usage and compilation information is available on the wiki. CONTRIBUTING.md also contains our contributing guidelines.

If you wish to learn more about how librespot works overall, the best way is to simply read the code, and ask any questions you have in our Gitter Room.

Issues

If you run into a bug when using librespot, please search the existing issues before opening a new one. Chances are, we've encountered it before, and have provided a resolution. If not, please open a new one, and where possible, include the backtrace librespot generates on crashing, along with anything we can use to reproduce the issue, eg. the Spotify URI of the song that caused the crash.

Building

A quick walk through of the build process is outlined here, while a detailed compilation guide can be found here.

Additional Dependencies

We recently switched to using Rodio for audio playback by default, hence for macOS and Windows, you should just be able to clone and build librespot (with the command below). For Linux, you will need to run the additional commands below, depending on your distro.

On Debian/Ubuntu, the following command will install these dependencies :

sudo apt-get install build-essential libasound2-dev

On Fedora systems, the following command will install these dependencies :

sudo dnf install alsa-lib-devel make gcc

librespot currently offers the a selection of audio backends.

Rodio (default)
ALSA
PortAudio
PulseAudio
JACK
SDL
Pipe

Please check the corresponding compiling entry for backend specific dependencies.

Once you've installed the dependencies and cloned this repository you can build librespot with the default backend using Cargo.

cargo build --release

Usage

A sample program implementing a headless Spotify Connect receiver is provided. Once you've built librespot, run it using :

target/release/librespot --name DEVICENAME

The above is a minimal example. Here is a more fully fledged one:

target/release/librespot -n "Librespot" -b 320 -c ./cache --enable-volume-normalisation --initial-volume 75 --device-type avr

The above command will create a receiver named Librespot, with bitrate set to 320kbps, initial volume at 75%, with volume normalisation enabled, and the device displayed in the app as an Audio/Video Receiver. A folder named cache will be created/used in the current directory, and be used to cache audio data and credentials.

A full list of runtime options are available here

Contact

Come and hang out on gitter if you need help or want to offer some. https://gitter.im/librespot-org/spotify-connect-resources

Disclaimer

Using this code to connect to Spotify's API is probably forbidden by them. Use at your own risk.

License

Everything in this repository is licensed under the MIT license.

This is a non exhaustive list of projects that either use or have modified librespot. If you'd like to include yours, submit a PR.