Refactor MPD setup
This commit is contained in:
parent
d320ba7ee1
commit
abcd234b3d
10 changed files with 149 additions and 23 deletions
33
templates/mpd/mpd.conf.j2
Normal file
33
templates/mpd/mpd.conf.j2
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
bind_to_address "{{ mpd_listen_address }}"
|
||||
port "{{ mpd_listen_port }}"
|
||||
|
||||
playlist_directory "{{ mpd_configuration_dir }}/playlists"
|
||||
|
||||
database {
|
||||
plugin "proxy"
|
||||
host "{{ mpd_remote_address }}"
|
||||
port "{{ mpd_remote_port }}"
|
||||
}
|
||||
|
||||
audio_output {
|
||||
type "pulse"
|
||||
name "mpd"
|
||||
replay_gain_handler "software"
|
||||
mixer_type "hardware"
|
||||
format "96000:24:1"
|
||||
}
|
||||
|
||||
input {
|
||||
enabled "no"
|
||||
plugin "tidal"
|
||||
}
|
||||
|
||||
input {
|
||||
enabled "no"
|
||||
plugin "qobuz"
|
||||
}
|
||||
|
||||
decoder {
|
||||
enabled "no"
|
||||
plugin "wildmidi"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue