Yet another open-source Spotify Connect compatible client, written in Go.
go-librespot gives you the freedom to have a Spotify Connect device wherever you want.
To get started you can download prebuilt binaries for the latest release.
Development prebuilt binaries are also available as GitHub Actions artifacts.
To build from source the following prerequisites are necessary:
- Go 1.22 or higher
- Libraries:
libogg
,libvorbis
,libasound2
To install Go, download it from the Go website.
To install the required libraries on Debian-based systems (Debian, Ubuntu, Raspbian), use:
sudo apt-get install libogg-dev libvorbis-dev libasound2-dev
Once prerequisites are installed you can clone the repository and run the daemon with:
go run ./cmd/daemon
Details about cross-compiling go-librespot are described here (thank you @felixstorm).
The default directory for configuration files is ~/.config/go-librespot
. You can change this directory with the
-config_dir
flag. The configuration directory contains:
config.yml
: The main configuration (does not exist by default)state.json
: The player state and credentialslockfile
: A lockfile to prevent running multiple instances on the same configuration
The full configuration schema is available here, only the main options are detailed below.
This is the default mode. It uses mDNS auto discovery to allow Spotify clients inside the same network to connect to go-librespot. This is also known as Spotify Connect.
An example configuration (not required) looks like this:
zeroconf_enabled: false # Whether to keep the device discoverable at all times, even if authenticated via other means
credentials:
type: zeroconf
zeroconf:
persist_credentials: false # Whether to persist zeroconf user credentials even after disconnecting
If persist_credentials
is true
, after connecting to the device for the first time credentials will be stored locally
and you can switch to interactive mode without having to authenticate manually.
This mode allows you to associate your account with the device and make it discoverable even outside the network. It requires some manual steps to complete the authentication:
-
Configure interactive mode
zeroconf_enabled: false # Whether to keep the device discoverable at all times credentials: type: interactive
-
Start the daemon to begin the authentication flow
-
Open the authorization link in your browser and wait to be redirected
-
If go-librespot is running on the same device as your browser, authentication should complete successfully
-
(optional) If go-librespot is running on another device, you'll need to copy the URL from your browser and call it from the device, for example:
curl http://127.0.0.1:36842/login?code=xxxxxxxx
Optionally, an API server can be started to control and monitor the player. To enable this feature, add the following to your configuration:
server:
enabled: true
address: localhost # Which address to bind to
port: 3678 # The server port
allow_origin: '' # Value for the Access-Control-Allow-Origin header
cert_file: '' # Path to certificate file for TLS
key_file: '' # Path to key file for TLS
For detailed API documentation see here.
Various configurations for volume control are available:
- No external volume without mixer: Spotify volume is controlled independently of the device volume, output samples are multiplied with the volume
- No external volume with mixer: Spotify volume is synchronized with the device volume and vice versa, output samples are not volume dependant, Spotify volume changes are applied to the ALSA mixer and vice versa
- External volume without mixer: Spotify volume is not synchronized with the device volume, output samples are not volume dependant
- External volume with mixer: Device volume is synchronized with Spotify volume, output samples are not volume dependant, volume changes are not applied to the ALSA mixer
The following options are also available:
log_level: info # Log level configuration (trace, debug, info, warn, error)
device_id: '' # Spotify device ID (auto-generated)
device_name: '' # Spotify device name
device_type: computer # Spotify device type (icon)
audio_device: default # ALSA audio device to use for playback
mixer_device: '' # ALSA mixer device for volume synchronization
mixer_control_name: Master # ALSA mixer control name for volume synchronization
bitrate: 160 # Playback bitrate (96, 160, 320)
volume_steps: 100 # Volume steps count
initial_volume: 100 # Initial volume in steps (not applied to the mixer device)
external_volume: false # Whether volume is controlled externally
Make sure to check here for the full list of options.
Protobuf definitions are managed through Buf. To recompile, execute:
buf generate
or using Go:
go generate ./...