-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mpdconf
59 lines (55 loc) · 1.42 KB
/
.mpdconf
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
music_directory "~/Music" # Beets music library folder
playlist_directory "~/.mpd/playlists" # Where do playlists live?
db_file "~/.mpd/database"
pid_file "~/.mpd/pid"
state_file "~/.mpd/state"
sticker_file "~/.mpd/sticker.sql"
port "6600"
auto_update "yes"
restore_paused "yes" # Music was paused when mpd starts, even if it was playing before.
# Audio stream
audio_output {
type "httpd"
name "Heaviside Music"
encoder "vorbis"
port "8000"
#quality "6.0"
bitrate "320"
format "44100:16:2"
always_on "yes"
tags "yes"
}
# Output for ncmpcpp visualizer
audio_output {
type "fifo"
name "Visualizer feed"
path "/tmp/mpd.fifo"
format "44100:16:1"
}
#audio_output {
# type "shout"
# encoding "ogg"
# name "Heaviside Ice"
# host "localhost"
# port "8000"
# mount "/mpd.ogg"
#
# # This is the source password in icecast.xml
# password "392781"
#
# # Set either quality or bit rate
# #quality "5.0"
# bitrate "320"
#
# format "44100:16:1"
#
# # Optional Parameters
# user "source"
# #description "here is my long description"
# #genre "jazz"
#} # end of audio_output
# Need this so that mpd still works if icecast is not running
audio_output {
type "null"
name "fake out"
}