40 lines
698 B
Text
40 lines
698 B
Text
# {{ ansible_managed }}
|
|
|
|
user "mpd"
|
|
group "{{ music_audio_group }}"
|
|
|
|
bind_to_address "any"
|
|
port "6600"
|
|
max_connections "20"
|
|
|
|
zeroconf_enabled "yes"
|
|
zeroconf_name "MPD @ %h"
|
|
|
|
music_directory "/srv/media/music"
|
|
auto_update "yes"
|
|
filesystem_charset "UTF-8"
|
|
|
|
playlist_directory "/var/lib/mpd/playlists"
|
|
db_file "/var/lib/mpd/tag_cache"
|
|
state_file "/var/lib/mpd/state"
|
|
sticker_file "/var/lib/mpd/sticker.sql"
|
|
|
|
input {
|
|
plugin "curl" # Required for web streams.
|
|
}
|
|
|
|
decoder {
|
|
plugin "hybrid_dsd"
|
|
enabled "no"
|
|
}
|
|
|
|
decoder {
|
|
plugin "wildmidi"
|
|
enabled "no"
|
|
}
|
|
|
|
audio_output {
|
|
type "pulse"
|
|
name "Pulse"
|
|
server "{{ music_pulse_server }}"
|
|
}
|