blob: 606c8d472272c9e80016dfdd7b9d804c86aa611a (
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
|
music_directory "~/music"
playlist_directory "~/.config/mpd/playlists"
db_file "~/.config/mpd/database"
pid_file "~/.config/mpd/pid"
auto_update "yes"
restore_paused "yes"
bind_to_address "127.0.0.1"
port "6600"
audio_output {
type "pulse"
name "pulse audio"
}
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"
}
|