-
Notifications
You must be signed in to change notification settings - Fork 1
/
mpd.conf
71 lines (63 loc) · 1.66 KB
/
mpd.conf
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
###############################################################################
user "mpd"
group "audio"
music_directory "/mpd/media/music"
playlist_directory "/mpd/media/playlists"
#db_file "/var/lib/mpd/tag_cache"
log_file "/var/log/mpd/mpd.log"
pid_file "/run/mpd/pid"
state_file "/var/lib/mpd/state"
sticker_file "/var/lib/mpd/sticker.sql"
bind_to_address "0.0.0.0"
#bind_to_address "/run/mpd/socket"
port "6600"
#log_level "default"
filesystem_charset "UTF-8"
restore_paused "no"
zeroconf_enabled "no"
#password "player@read,add,control,admin"
#default_permissions "read"
#replaygain "album"
#replaygain_preamp "0"
#replaygain_missing_preamp "0"
#replaygain_limit "yes"
#volume_normalization "no"
database {
plugin "proxy"
host "172.17.0.1"
port "6600"
}
audio_output {
type "httpd"
name "My HTTP Stream"
encoder "vorbis"
port "4887"
bind_to_address "0.0.0.0"
format "44100:16:2"
bitrate "128"
always_on "yes"
tags "no"
}
audio_output {
type "fifo"
name "FIFO"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
###############################################################################
input {
plugin "curl"
}
input {
enabled "no"
plugin "qobuz"
}
input {
enabled "no"
plugin "tidal"
}
decoder {
plugin "hybrid_dsd"
enabled "no"
}
###############################################################################