summaryrefslogtreecommitdiff
path: root/config/common/mpd/mpd.conf
blob: 889b458c34826e1ac56b7e9fc18e7cc518b150b3 (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
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		 "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"
}