blob: 93e41e55bcd635c6237354451bfaeea795363db0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
music_directory "~/.config/mpd/folders"
playlist_directory "~/.config/mpd/playlists"
db_file "~/.local/share/mpd/mpd.db"
log_file "syslog"
pid_file "~/.local/share/mpd/mpd.pid"
state_file "~/.local/share/mpd/state"
sticker_file "~/.local/share/mpd/sticker.sql"
port "6600"
save_absolute_paths_in_playlists "yes"
mixer_type "software"
volume_normalization "yes"
input {
plugin "curl"
}
resampler {
plugin "libsamplerate"
type "0"
}
audio_output {
type "pipewire"
name "mpd"
}
audio_output {
type "fifo"
name "mpd_fifo"
path "~/.local/share/mpd/fifo"
format "44100:16:2"
}
audio_output {
always_on "yes"
bitrate "max"
encoder "opus"
format "48000:24:2"
name "dave's radio"
opustags "yes"
port "8023"
signal "music"
tags "yes"
type "httpd"
}
|