blob: 40ece3945fcdf143145286714d74a13e8fb9516c (
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
|
music_directory "~/music"
playlist_directory "~/.config/mpd/playlists"
db_file "~/.config/mpd/database"
pid_file "~/.config/mpd/pid"
state_file "~/.local/state/mpd/state"
auto_update "yes"
restore_paused "yes"
# bind_to_address "/run/user/1000/mpd/socket"
# port "6600"
audio_output {
type "alsa"
name "ALSA sound card"
}
audio_output {
type "httpd"
name "My HTTP Stream"
port "7721"
always_on "yes" # prevent MPD from disconnecting all listeners when playback is stopped.
tags "yes" # httpd supports sending tags to listening streams.
}
audio_output {
type "fifo"
name "fifo"
path "~/.config/mpd/mpd.fifo"
format "44100:16:2"
}
|