summaryrefslogtreecommitdiff
path: root/mpd/mpd.conf
blob: 929a3a5c07f477ce5a45a09b8ade67c294c67c9b (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
30
31
32
33
34
35
36
37
38
39
## Configuracion

# Basico
music_directory "/home/matias/Music"
playlist_directory "/home/matias/.mpd/playlists"
db_file "/home/matias/.mpd/mpd.db"
log_file "/home/matias/.mpd/mpd.log"
pid_file "/home/matias/.mpd/pid.log"
state_file "/home/matias/.mpd/mpdstate"

# Audio
#audio_output {
#    type	"alsa"
#    name	"MPD Sound Device"
#    options	"dev=dmixer"
#}

audio_output {
    type	"pulse"
    name	"MPD Sound Device (Pulseaudio)"
}

audio_output {
	type	"fifo"
	name	"my_fifo"
	path	"/tmp/mpd.fifo"
	format	"44100:16:2"
}

audio_output {
	type		"httpd"
	name		"My HTTP Stream"
	encoder		"lame"
	port		"8000"
	bind_to_address	"0.0.0.0"
	bitrate		"128"
	format		"44100:16:1"
	max_clients	"0"
}