Open Source Spotify client library
Go to file
Will Stott 97f61ec2a8 Protobuf 2.4.0, generate all proto files every time, but only write when changed, supporting poor souls with crlf line ending conversion.
Drop Regex dependency, just parse using simple string methods.

Protobuf 2.4.0, generate all proto files every time, but only write when changed, supporting poor souls with crlf line ending conversion.
2019-09-08 13:07:59 +01:00
audio Upgrade dependencies 2019-07-17 22:08:15 -05:00
cache Fixes compilation errors 2015-12-18 19:59:10 +00:00
connect Restrict protobuf updates 2019-07-30 11:00:02 +02:00
contrib Add Dockerfile.Rpi which creates a librespot docker image which can be used on the RPI directly. 2018-07-13 10:21:31 +02:00
core Restrict protobuf updates 2019-07-30 11:00:02 +02:00
docs Change documentation to reflect code behavior 2018-07-03 13:07:29 +02:00
examples Formatting 2018-07-03 13:08:42 +02:00
metadata Restrict protobuf updates 2019-07-30 11:00:02 +02:00
playback Upgrade dependencies 2019-07-17 22:08:15 -05:00
protocol Protobuf 2.4.0, generate all proto files every time, but only write when changed, supporting poor souls with crlf line ending conversion. 2019-09-08 13:07:59 +01:00
src Upgrade dependencies 2019-07-17 22:08:15 -05: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 travis: Add rodio & sdl to tests 2019-07-23 14:14:44 +02:00
Cargo.lock Protobuf 2.4.0, generate all proto files every time, but only write when changed, supporting poor souls with crlf line ending conversion. 2019-09-08 13:07:59 +01:00
Cargo.toml Restrict protobuf updates 2019-07-30 11:00:02 +02:00
CONTRIBUTING.md [ci skip] Create CONTRIBUTING.md 2018-02-26 18:13:41 +01:00
LICENSE Initial commit. 2015-04-25 21:32:07 +01:00
README.md Add note for request for maintainers 2019-08-19 17:29:26 +01:00
rustfmt.toml Add rustfmt.toml 2018-02-11 12:33:00 +01:00

Build Status Gitter chat

Request for maintainers

Activity on librespot as of late has been somewhat limited. Ive been busy with other projects, and have also bought a Spotify Connect speaker, hence my needs for librespot are diminished. It would be great for this project to live on though, and the many contributions that have been provided over the years clearly show that its used by more than a few. Thus, Im requesting that anyone who would be interested in taking over the maintenance of this project leave a note in #363. Regular contributors have priority, but all interested parties invited. Also, I will not be the sole individual choosing a new maintainer, anyone who has contributed to librespot is welcome to suggest a new maintainer or offer support for an individual in the previously linked thread. After a few weeks, well hopefully choose a new maintainer :)

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 forseeable 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.

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.

There is some brief documentation on how the protocol works in the docs folder, and more general usage and compilation information is available on the wiki.

CONTRIBUTING.md also contains detailed instructions on setting up a development environment, compilation, and 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 the Gitter chat linked above.

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

Rust 1.32.0 or later is required to build librespot.

We recently switched to using Rodio for audio playback by default, hene 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

Once you've cloned this repository you can build librespot 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.