blob: 4bf8302cb6d06e10f5ca985f15dbe29c5b901e69 (
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
40
|
# $NetBSD: mpd.conf,v 1.7 2014/04/18 12:46:58 wiz Exp $
# required
music_directory "/mp3"
playlist_directory "/mp3"
log_file "/var/log/mpd.log"
# optional
port "6600"
max_connections "5"
max_command_list_size "2048"
max_output_buffer_size "2048"
connection_timeout "60"
db_file "/mp3/.mpddb"
state_file "/mp3/.mpdstate"
save_absolute_paths_in_playlists "no"
max_playlist_length "4096"
buffer_before_play "25%"
bind_to_address "any"
audio_output {
type "oss"
name "LibAO-OSS"
device "@DEVOSSAUDIO@"
}
mixer_type "software"
# mixer_control defaults to the master volume control. uncomment the
# following line to have mpd's volume control modify the "PCM"
# volume instead:
# mixer_control "Pcm"
#user "mp3"
# log_level can be "default", "secure", "verbose"
log_level "default"
#password "password@read,add,control,admin"
#default_permissions "read,add,control,admin"
#filesystem_charset "UTF-8"
|