Last active
January 6, 2017 00:39
-
-
Save lannon/26f048d91f064faa366f3005a0ff209f to your computer and use it in GitHub Desktop.
Raspberry Pi Mopidy Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# standard core config settings | |
[core] | |
cache_dir = /var/cache/mopidy | |
config_dir = /etc/mopidy | |
data_dir = /var/lib/mopidy | |
# standard logging config settings | |
[logging] | |
config_file = /etc/mopidy/logging.conf | |
debug_file = /var/log/mopidy/mopidy-debug.log | |
# standard local config settings | |
[local] | |
data_dir = /var/lib/mopidy/local | |
media_dir = /var/lib/mopidy/media | |
# standard m3u config settings | |
[m3u] | |
playlists_dir = /var/lib/mopidy/playlists | |
[audio] | |
# disable mixer to prevent software processing of | |
# audio signal | |
mixer=none | |
# use alsasink for output | |
output=alsasink | |
# configure spotify | |
[spotify] | |
username=my.spotify.username | |
password=my.spotify.password | |
# default setting is 160, use 320 for higher res streaming | |
bitrate=320 | |
# don't let spotify attempt to normalize volume | |
volume_normalization=false | |
[http] | |
# enable HTTP frontend | |
enabled = true | |
hostname = 0.0.0.0 | |
# http on port 6680 | |
port = 6680 | |
zeroconf = Mopidy HTTP server on $hostname | |
# enable the mopify http frontend | |
# https://github.com/dirkgroenen/mopidy-mopify | |
[mopify] | |
enabled = true | |
debug = false | |
# disable software mixer | |
[softwaremixer] | |
enabled = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment