Layout refactor
Also included provisioning for htpc host
This commit is contained in:
parent
f90702c7b8
commit
970f7489fb
103 changed files with 782 additions and 893 deletions
40
templates/mpd/mpd.conf.j2
Normal file
40
templates/mpd/mpd.conf.j2
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
# {{ ansible_managed }}
|
||||
#
|
||||
bind_to_address "{{ mpd_listen_address }}"
|
||||
port "{{ mpd_listen_port }}"
|
||||
|
||||
playlist_directory "{{ mpd_configuration_dir }}/playlists"
|
||||
state_file "{{ mpd_configuration_dir }}/state"
|
||||
|
||||
database {
|
||||
plugin "proxy"
|
||||
host "{{ mpd_remote_address }}"
|
||||
port "{{ mpd_remote_port }}"
|
||||
}
|
||||
|
||||
audio_output {
|
||||
name "mpd"
|
||||
type "pipewire"
|
||||
dsd "yes"
|
||||
}
|
||||
|
||||
audio_output {
|
||||
type "fifo"
|
||||
name "my_fifo"
|
||||
path "/tmp/mpd.fifo"
|
||||
}
|
||||
|
||||
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