aboutsummaryrefslogtreecommitdiff
path: root/etc/mpd.conf
blob: 163e3779cd3dbf7707850f0b9f98469c033fc0a9 (plain) (blame)
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
music_directory		"/var/lib/mpd/music"
playlist_directory	"/var/lib/mpd/playlists"
db_file			"/var/lib/mpd/tag_cache"
state_file		"/var/lib/mpd/state"
sticker_file		"/var/lib/mpd/sticker.sql"
filesystem_charset	"UTF-8"

user			"mpd"
bind_to_address		"any"
auto_update    		"yes"

input {
        plugin		"curl"
}

audio_output {
	type		"alsa"
	name		"DigiHug USB Audio"
	device		"hw:CARD=Audio,DEV=0"
	mixer_type	"none"
	enabled		"no"
}
audio_output {
	type		"pulse"
	name		"My Pulse Output"
	server		"127.0.0.1"
	mixer_type	"hardware"
}
audio_output {
	type		"fifo"
	name		"my_fifo"
	path		"/tmp/mpd.fifo"
	format		"44100:16:2"
}
audio_output {
	type		"httpd"
	name		"HTTP stream"
	bind_to_address	"10.0.1.103"
	port 		"6688"
	quality		"5"
	always_on	"yes"
	tags		"yes"
}