blob: 6e5309e866a989a282efd3a8b4bb4e82efa0b6b7 (
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
|
# An example configuration file for MPD
user "mpd"
music_directory "~/music"
playlist_directory "~/.mpd/playlists"
db_file "~/.mpd/database"
pid_file "/var/run/mpd/mpd.pid"
log_file "~/.mpd/log"
error_file "~/.mpd/error-log"
# An example of an ALSA output
audio_output {
type "alsa"
name "My ALSA Device"
device "hw:0,0" # optional
format "44100:16:2" # optional
}
# Volume control mixer
mixer_type "alsa"
# shout example
#audio_output {
# type "shout"
# name "personal mpd stream"
# host "127.0.0.1"
# port "8000"
# mount "/mpd"
# quality "5.0"
# format "44100:16:2"
# user "source"
# password "musicrockz"
#}
|