-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpd.conf
executable file
·53 lines (36 loc) · 1.45 KB
/
mpd.conf
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
# MPD Config
# Full example at: /usr/share/doc/mpd/mpdconf.example
# Read the user manual for documentation: http://www.musicpd.org/doc/user/
# Files and directories #######################################################
music_directory "~/mus"
playlist_directory "~/mus/_pl"
db_file "~/.config/mpd/database"
# stores the process ID for use of mpd --kill and some init scripts. #
pid_file "~/.config/mpd/pid"
# get MPD back into the same general shape it was in before it was brought down.
state_file "~/.config/mpd/state"
# General music daemon options ################################################
# automatic update of MPD's database when files in music_directory are changed.
auto_update "yes"
# enables on-the-fly normalization volume adjustment.
volume_normalization "yes"
# Permissions #################################################################
# This setting specifies the permissions a user has who has not yet logged in.
default_permissions "read,add,control"
# Input #######################################################################
input {
plugin "curl"
}
# Audio Output ################################################################
# PulseAudio output
audio_output {
type "pulse"
name "pulse audio"
}
# ncmpcpp visualization support
audio_output {
type "fifo"
name "visualizerfeed"
path "/tmp/mpd.fifo"
format "44100:16:2"
}