-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.mpdconf.sample
89 lines (74 loc) · 2.35 KB
/
.mpdconf.sample
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright (c) Rafael Sánchez
# This file is part of 'pe.audio.sys'
# 'pe.audio.sys', a PC based personal audio system.
#
# https://www.musicpd.org/doc/html/user.html#configuration
# to check compiled features: mpd --version
# to debug: mpd --stdout --no-daemon --verbose
#
# For logging see man mpd.conf
#
# error: errors
# warning: warnings
# notice: interesting informational messages (DEFAULT)
# info: unimportant informational messages
# verbose: debug messages (for developers and for troubleshooting)
#
log_file "~/.config/mpd/mpd.log"
log_level "notice"
port "6600"
music_directory "~/music"
follow_outside_symlinks "yes"
follow_inside_symlinks "no"
# default local playlist folder
playlist_directory "~/.config/mpd/playlists"
# alternative network playlist folder
#playlist_directory "/mnt/SOME/SHARED/FOLDER/playlists/"
pid_file "~/.config/mpd/pid"
state_file "~/.config/mpd/state"
state_file_interval "30"
replaygain "off"
database {
plugin "simple"
path "~/.config/mpd/database"
}
input {
plugin "cdio_paranoia"
# speed 2 is quieter than 1, with an Apple SuperDrive USB unit
speed "2"
# mode disable|overlap|full
mode "overlap"
}
audio_output {
type "jack"
enabled "yes"
name "jack"
client_name "mpd"
always_on "no"
source_ports "out_0,out_1"
# (!) MUST declare destination_ports to avoid autoconnect to system
destination_ports "mpd_loop:input_1,mpd_loop:input_2"
}
audio_output {
# This allows to have a volume control synced with pe.audio.sys
# (needs snd_dummy to be enabled)
type "alsa"
enabled "no"
name "alsa_dummy"
device "hw:Dummy"
mixer_control "Master"
mixer_type "hardware"
}
resampler {
# Core i3 CPU %
# SRC
# Best Medium SoXr
# ----- ----- -----
# 48 KHz --> 44.1 KHz 21 % 7.5 % 3.5 %
# 96 KHz --> 44.1 KHz 35 % 13 % 4.0 %
plugin "soxr"
quality "very high"
plugin "libsamplerate"
#type "Medium Sinc Interpolator"
#type "Best Sinc Interpolator"
}