mirror for docker/* tags

Sasha Hilton cbdb47751a Add note about cache directory permissions 3 years ago
.github 53f516e5de Attempt to fix tests 3 years ago
audio 78614c9d7a Bump lewton to 0.10 3 years ago
cache 85c1925f8d Fixes compilation errors 8 years ago
connect 4fbbe44ab8 bump `base64` dependency (v0.10 to v0.13) 3 years ago
contrib 5e304e68c9 Merge pull request #390 from ashthespy/crossbuild 4 years ago
core e582f0a3fc Improved SpotifyId implementation 3 years ago
docs f61bbd87a8 Change documentation to reflect code behavior 5 years ago
examples 064359c26e Add an example to fetch a Spotify API token (#512) 3 years ago
metadata 4708e0a2bf cargo toml formatting fix 3 years ago
playback ed20f357dc Fix playback in pulseaudio backend (#577) 3 years ago
protocol 4708e0a2bf cargo toml formatting fix 3 years ago
src efabb03631 Fix incorrect cache initialisation causing crash on startup 3 years ago
.dockerignore 0331a7f592 Remove contrib from .dockerignore 5 years ago
.gitignore 12487966b2 Somewhat uniform coding style might help myself to better understand Rust :-) 6 years ago
.travis.yml 732bb1ce82 Merge branch 'dev' into gst1.0-2020 3 years ago
COMPILING.md 6f1bf7dd07 ci: add use of github actions 3 years ago
CONTRIBUTING.md 7670ffe101 Only format with stable rustfmt (#465) 4 years ago
Cargo.lock 78614c9d7a Bump lewton to 0.10 3 years ago
Cargo.toml e114558e28 bump `rpassword` dependency further (v4 to v5) 3 years ago
LICENSE a993b60ffa Initial commit. 9 years ago
PUBLISHING.md af715f9e8c Add publish.sh script for creating new version, update PUBLISHING.md 4 years ago
README.md cbdb47751a Add note about cache directory permissions 3 years ago
publish.sh bf44c8c170 Update publish.sh to rebase dev after publish. 3 years ago
rustfmt.toml d26590afc5 Update to Rust 2018 4 years ago

README.md

Build Status 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 to control and play music via various backends, and to act as a Spotify Connect receiver. It is an alternative to the official and now deprecated 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 following 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

Packages

librespot is also available via official package system on various operating systems such as Linux, FreeBSD, NetBSD. Repology offers a good overview.

Packaging status

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

Please Note: When using the cache feature, an authentication blob is stored for your account in the cache directory. For security purposes, we recommend that you set directory permissions on the cache directory to 700.

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.

Related Projects

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.