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
90
91
92
93
94
95
96
97
98
99
100
101
|
########## REQUIRED ###############
port "2100"
music_directory "~/mp3"
playlist_directory "~/playlists"
log_file "~/mpd.log"
error_file "~/mpd.error"
###################################
###################################
# EVERYTHING ELSE IS OPTIONAL
###################################
######### FILESYSTEM SETTINGS ###########
# If filenames or directory names don't
# display correctly, set the character
# set for the filesystem here.
# The fileystem character set is
# typically "ISO-8859-1" or "UTF-8".
# After changing fileystem_charset,
# recreate the db: mpd --create-db
#filesystem_charset "ISO-8859-1"
#########################################
########### OPTIONAL FILES ##############
# Location of DB file
#db_file "~/playlists/.mpddb"
#
# State file for storing state of mpd
# when it is shutdown. MPD will restore
# the state (i.e. load playlist, start
# playing, etc) upon restart.
#state_file "~/.mpdstate"
##########################################
######### VOLUME MIXER ############
# for OSS Mixer
#mixer_type "oss"
#mixer_device "/dev/mixer"
#mixer_control "Pcm"
# for Alsa Mixer
#mixer_type "alsa"
#mixer_device "default"
#mixer_control "PCM"
# for Software Mixer
#mixer_type "software"
##################################
######### AUDIO OUTPUT ###########
# for OSS Audio Output
#ao_driver "oss"
#ao_driver_options "dsp=/dev/dsp"
# for ALSA Audio Output
#ao_driver "alsa09"
#ao_driver_options "dev=hw:0,0"
# misc audio output options
#audio_write_size "1024"
##################################
#### OUTPUT BUFFER SETTINGS ######
#buffer_size "2048"
#buffer_before_play "25%"
##################################
########### SECURITY SETTINGS ############
# if you start mpd as root, its recmmoned
# you specify a a user for mpd to run.
#user "nobody"
#
# to only allow connections from localhost
#bind_to_address "localhost"
#
# Specify one or more passwords required to
# access mpd:
#password "password1@read,add,control,admin"
#password "password2@read"
#
# Specify permissions used by default when no password is
# given by for a connection/client.
#default_permissions "read,add,control,admin"
##########################################
########### MISC OPTIONS #################
#max_playlist_length "4096"
#connection_timeout "60"
#max_connections "5"
#max_command_list_size "2048"
#max_output_buffer_size "2048"
#save_absolute_paths_in_playlists "no"
#
# log_level can be "default", "secure", "verbose"
#log_level "default"
#########################################
|