diff options
Diffstat (limited to 'mpd/mpd.conf')
| -rw-r--r-- | mpd/mpd.conf | 397 |
1 files changed, 397 insertions, 0 deletions
diff --git a/mpd/mpd.conf b/mpd/mpd.conf new file mode 100644 index 0000000..5198610 --- /dev/null +++ b/mpd/mpd.conf | |||
| @@ -0,0 +1,397 @@ | |||
| 1 | # An example configuration file for MPD. | ||
| 2 | # Read the user manual for documentation: http://www.musicpd.org/doc/user/ | ||
| 3 | |||
| 4 | |||
| 5 | # Files and directories ####################################################### | ||
| 6 | # | ||
| 7 | # This setting controls the top directory which MPD will search to discover the | ||
| 8 | # available audio files and add them to the daemon's online database. This | ||
| 9 | # setting defaults to the XDG directory, otherwise the music directory will be | ||
| 10 | # be disabled and audio files will only be accepted over ipc socket (using | ||
| 11 | # file:// protocol) or streaming files over an accepted protocol. | ||
| 12 | # | ||
| 13 | music_directory "/home/t/Music" | ||
| 14 | # | ||
| 15 | # This setting sets the MPD internal playlist directory. The purpose of this | ||
| 16 | # directory is storage for playlists created by MPD. The server will use | ||
| 17 | # playlist files not created by the server but only if they are in the MPD | ||
| 18 | # format. This setting defaults to playlist saving being disabled. | ||
| 19 | # | ||
| 20 | playlist_directory "/home/t/Music/Playlists" | ||
| 21 | # | ||
| 22 | # This setting sets the location of the MPD database. This file is used to | ||
| 23 | # load the database at server start up and store the database while the | ||
| 24 | # server is not up. This setting defaults to disabled which will allow | ||
| 25 | # MPD to accept files over ipc socket (using file:// protocol) or streaming | ||
| 26 | # files over an accepted protocol. | ||
| 27 | # | ||
| 28 | #db_file "/home/t/.mpd/database" | ||
| 29 | # | ||
| 30 | # These settings are the locations for the daemon log files for the daemon. | ||
| 31 | # These logs are great for troubleshooting, depending on your log_level | ||
| 32 | # settings. | ||
| 33 | # | ||
| 34 | # The special value "syslog" makes MPD use the local syslog daemon. This | ||
| 35 | # setting defaults to logging to syslog. | ||
| 36 | # | ||
| 37 | #log_file "/home/t/.mpd/log" | ||
| 38 | # | ||
| 39 | # This setting sets the location of the file which stores the process ID | ||
| 40 | # for use of mpd --kill and some init scripts. This setting is disabled by | ||
| 41 | # default and the pid file will not be stored. | ||
| 42 | # | ||
| 43 | #pid_file "/home/t/.mpd/pid" | ||
| 44 | # | ||
| 45 | # This setting sets the location of the file which contains information about | ||
| 46 | # most variables to get MPD back into the same general shape it was in before | ||
| 47 | # it was brought down. This setting is disabled by default and the server | ||
| 48 | # state will be reset on server start up. | ||
| 49 | # | ||
| 50 | #state_file "/home/t/.mpd/state" | ||
| 51 | # | ||
| 52 | # The location of the sticker database. This is a database which | ||
| 53 | # manages dynamic information attached to songs. | ||
| 54 | # | ||
| 55 | #sticker_file "/home/t/.mpd/sticker.sql" | ||
| 56 | # | ||
| 57 | ############################################################################### | ||
| 58 | |||
| 59 | |||
| 60 | # General music daemon options ################################################ | ||
| 61 | # | ||
| 62 | # This setting specifies the user that MPD will run as. MPD should never run as | ||
| 63 | # root and you may use this setting to make MPD change its user ID after | ||
| 64 | # initialization. This setting is disabled by default and MPD is run as the | ||
| 65 | # current user. | ||
| 66 | # | ||
| 67 | user "t" | ||
| 68 | # | ||
| 69 | # This setting specifies the group that MPD will run as. If not specified | ||
| 70 | # primary group of user specified with "user" setting will be used (if set). | ||
| 71 | # This is useful if MPD needs to be a member of group such as "audio" to | ||
| 72 | # have permission to use sound card. | ||
| 73 | # | ||
| 74 | #group "nogroup" | ||
| 75 | # | ||
| 76 | # This setting sets the address for the daemon to listen on. Careful attention | ||
| 77 | # should be paid if this is assigned to anything other then the default, any. | ||
| 78 | # This setting can deny access to control of the daemon. Not effective if | ||
| 79 | # systemd socket activiation is in use. | ||
| 80 | # | ||
| 81 | # For network | ||
| 82 | #bind_to_address "any" | ||
| 83 | # | ||
| 84 | # And for Unix Socket | ||
| 85 | bind_to_address "/home/t/.mpd/socket" | ||
| 86 | # | ||
| 87 | # This setting is the TCP port that is desired for the daemon to get assigned | ||
| 88 | # to. | ||
| 89 | # | ||
| 90 | #port "6600" | ||
| 91 | # | ||
| 92 | # This setting controls the type of information which is logged. Available | ||
| 93 | # setting arguments are "default", "secure" or "verbose". The "verbose" setting | ||
| 94 | # argument is recommended for troubleshooting, though can quickly stretch | ||
| 95 | # available resources on limited hardware storage. | ||
| 96 | # | ||
| 97 | #log_level "default" | ||
| 98 | # | ||
| 99 | # Setting "restore_paused" to "yes" puts MPD into pause mode instead | ||
| 100 | # of starting playback after startup. | ||
| 101 | # | ||
| 102 | restore_paused "yes" | ||
| 103 | # | ||
| 104 | # This setting enables MPD to create playlists in a format usable by other | ||
| 105 | # music players. | ||
| 106 | # | ||
| 107 | #save_absolute_paths_in_playlists "no" | ||
| 108 | # | ||
| 109 | # This setting defines a list of tag types that will be extracted during the | ||
| 110 | # audio file discovery process. The complete list of possible values can be | ||
| 111 | # found in the user manual. | ||
| 112 | #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc" | ||
| 113 | # | ||
| 114 | # This example just enables the "comment" tag without disabling all | ||
| 115 | # the other supported tags: | ||
| 116 | #metadata_to_use "+comment" | ||
| 117 | # | ||
| 118 | # This setting enables automatic update of MPD's database when files in | ||
| 119 | # music_directory are changed. | ||
| 120 | # | ||
| 121 | #auto_update "yes" | ||
| 122 | # | ||
| 123 | # Limit the depth of the directories being watched, 0 means only watch | ||
| 124 | # the music directory itself. There is no limit by default. | ||
| 125 | # | ||
| 126 | #auto_update_depth "3" | ||
| 127 | # | ||
| 128 | ############################################################################### | ||
| 129 | |||
| 130 | |||
| 131 | # Symbolic link behavior ###################################################### | ||
| 132 | # | ||
| 133 | # If this setting is set to "yes", MPD will discover audio files by following | ||
| 134 | # symbolic links outside of the configured music_directory. | ||
| 135 | # | ||
| 136 | #follow_outside_symlinks "yes" | ||
| 137 | # | ||
| 138 | # If this setting is set to "yes", MPD will discover audio files by following | ||
| 139 | # symbolic links inside of the configured music_directory. | ||
| 140 | # | ||
| 141 | #follow_inside_symlinks "yes" | ||
| 142 | # | ||
| 143 | ############################################################################### | ||
| 144 | |||
| 145 | |||
| 146 | # Zeroconf / Avahi Service Discovery ########################################## | ||
| 147 | # | ||
| 148 | # If this setting is set to "yes", service information will be published with | ||
| 149 | # Zeroconf / Avahi. | ||
| 150 | # | ||
| 151 | #zeroconf_enabled "yes" | ||
| 152 | # | ||
| 153 | # The argument to this setting will be the Zeroconf / Avahi unique name for | ||
| 154 | # this MPD server on the network. %h will be replaced with the hostname. | ||
| 155 | # | ||
| 156 | #zeroconf_name "Music Player @ %h" | ||
| 157 | # | ||
| 158 | ############################################################################### | ||
| 159 | |||
| 160 | |||
| 161 | # Permissions ################################################################# | ||
| 162 | # | ||
| 163 | # If this setting is set, MPD will require password authorization. The password | ||
| 164 | # setting can be specified multiple times for different password profiles. | ||
| 165 | # | ||
| 166 | #password "password@read,add,control,admin" | ||
| 167 | # | ||
| 168 | # This setting specifies the permissions a user has who has not yet logged in. | ||
| 169 | # | ||
| 170 | #default_permissions "read,add,control,admin" | ||
| 171 | # | ||
| 172 | ############################################################################### | ||
| 173 | |||
| 174 | |||
| 175 | # Database ####################################################################### | ||
| 176 | # | ||
| 177 | |||
| 178 | #database { | ||
| 179 | # plugin "proxy" | ||
| 180 | # host "other.mpd.host" | ||
| 181 | # port "6600" | ||
| 182 | #} | ||
| 183 | |||
| 184 | # Input ####################################################################### | ||
| 185 | # | ||
| 186 | |||
| 187 | #input { | ||
| 188 | # plugin "curl" | ||
| 189 | # proxy "proxy.isp.com:8080" | ||
| 190 | # proxy_user "user" | ||
| 191 | # proxy_password "password" | ||
| 192 | #} | ||
| 193 | |||
| 194 | # | ||
| 195 | ############################################################################### | ||
| 196 | |||
| 197 | # Audio Output ################################################################ | ||
| 198 | # | ||
| 199 | # MPD supports various audio output types, as well as playing through multiple | ||
| 200 | # audio outputs at the same time, through multiple audio_output settings | ||
| 201 | # blocks. Setting this block is optional, though the server will only attempt | ||
| 202 | # autodetection for one sound card. | ||
| 203 | # | ||
| 204 | # An example of an ALSA output: | ||
| 205 | # | ||
| 206 | #audio_output { | ||
| 207 | # type "alsa" | ||
| 208 | # name "My ALSA Device" | ||
| 209 | ## device "hw:0,0" # optional | ||
| 210 | ## mixer_type "hardware" # optional | ||
| 211 | ## mixer_device "default" # optional | ||
| 212 | ## mixer_control "PCM" # optional | ||
| 213 | ## mixer_index "0" # optional | ||
| 214 | #} | ||
| 215 | # | ||
| 216 | # An example of an OSS output: | ||
| 217 | # | ||
| 218 | audio_output { | ||
| 219 | type "oss" | ||
| 220 | name "My OSS Device" | ||
| 221 | device "/dev/dsp" # optional | ||
| 222 | mixer_type "hardware" # optional | ||
| 223 | mixer_device "/dev/mixer" # optional | ||
| 224 | mixer_control "PCM" # optional | ||
| 225 | } | ||
| 226 | |||
| 227 | #audio_output { | ||
| 228 | # type "fifo" | ||
| 229 | # name "my_fifo" | ||
| 230 | # path "/home/t/.mpd/mpd.fifo" | ||
| 231 | # format "44100:16:2" | ||
| 232 | #} | ||
| 233 | # | ||
| 234 | # An example of a shout output (for streaming to Icecast): | ||
| 235 | # | ||
| 236 | #audio_output { | ||
| 237 | # type "shout" | ||
| 238 | # encoder "vorbis" # optional | ||
| 239 | # name "My Shout Stream" | ||
| 240 | # host "localhost" | ||
| 241 | # port "8000" | ||
| 242 | # mount "/mpd.ogg" | ||
| 243 | # password "hackme" | ||
| 244 | # quality "5.0" | ||
| 245 | # bitrate "128" | ||
| 246 | # format "44100:16:1" | ||
| 247 | ## protocol "icecast2" # optional | ||
| 248 | ## user "source" # optional | ||
| 249 | ## description "My Stream Description" # optional | ||
| 250 | ## url "http://example.com" # optional | ||
| 251 | ## genre "jazz" # optional | ||
| 252 | ## public "no" # optional | ||
| 253 | ## timeout "2" # optional | ||
| 254 | ## mixer_type "software" # optional | ||
| 255 | #} | ||
| 256 | # | ||
| 257 | # An example of a recorder output: | ||
| 258 | # | ||
| 259 | #audio_output { | ||
| 260 | # type "recorder" | ||
| 261 | # name "My recorder" | ||
| 262 | # encoder "vorbis" # optional, vorbis or lame | ||
| 263 | # path "/var/lib/mpd/recorder/mpd.ogg" | ||
| 264 | ## quality "5.0" # do not define if bitrate is defined | ||
| 265 | # bitrate "128" # do not define if quality is defined | ||
| 266 | # format "44100:16:1" | ||
| 267 | #} | ||
| 268 | # | ||
| 269 | # An example of a httpd output (built-in HTTP streaming server): | ||
| 270 | # | ||
| 271 | #audio_output { | ||
| 272 | # type "httpd" | ||
| 273 | # name "My HTTP Stream" | ||
| 274 | # encoder "vorbis" # optional, vorbis or lame | ||
| 275 | # port "8000" | ||
| 276 | # bind_to_address "0.0.0.0" # optional, IPv4 or IPv6 | ||
| 277 | ## quality "5.0" # do not define if bitrate is defined | ||
| 278 | # bitrate "128" # do not define if quality is defined | ||
| 279 | # format "44100:16:1" | ||
| 280 | # max_clients "0" # optional 0=no limit | ||
| 281 | #} | ||
| 282 | # | ||
| 283 | # An example of a pulseaudio output (streaming to a remote pulseaudio server) | ||
| 284 | # | ||
| 285 | #audio_output { | ||
| 286 | # type "pulse" | ||
| 287 | # name "My Pulse Output" | ||
| 288 | ## server "remote_server" # optional | ||
| 289 | ## sink "remote_server_sink" # optional | ||
| 290 | #} | ||
| 291 | # | ||
| 292 | # An example of a winmm output (Windows multimedia API). | ||
| 293 | # | ||
| 294 | #audio_output { | ||
| 295 | # type "winmm" | ||
| 296 | # name "My WinMM output" | ||
| 297 | ## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional | ||
| 298 | # or | ||
| 299 | ## device "0" # optional | ||
| 300 | ## mixer_type "hardware" # optional | ||
| 301 | #} | ||
| 302 | # | ||
| 303 | # An example of an openal output. | ||
| 304 | # | ||
| 305 | #audio_output { | ||
| 306 | # type "openal" | ||
| 307 | # name "My OpenAL output" | ||
| 308 | ## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional | ||
| 309 | #} | ||
| 310 | # | ||
| 311 | # An example of an sndio output. | ||
| 312 | # | ||
| 313 | #audio_output { | ||
| 314 | # type "sndio" | ||
| 315 | # name "sndio output" | ||
| 316 | # mixer_type "hardware" | ||
| 317 | #} | ||
| 318 | # | ||
| 319 | # An example of an OS X output: | ||
| 320 | # | ||
| 321 | #audio_output { | ||
| 322 | # type "osx" | ||
| 323 | # name "My OS X Device" | ||
| 324 | ## device "Built-in Output" # optional | ||
| 325 | ## channel_map "-1,-1,0,1" # optional | ||
| 326 | #} | ||
| 327 | # | ||
| 328 | ## Example "pipe" output: | ||
| 329 | # | ||
| 330 | #audio_output { | ||
| 331 | # type "pipe" | ||
| 332 | # name "my pipe" | ||
| 333 | # command "aplay -f cd 2>/dev/null" | ||
| 334 | ## Or if you're want to use AudioCompress | ||
| 335 | # command "AudioCompress -m | aplay -f cd 2>/dev/null" | ||
| 336 | ## Or to send raw PCM stream through PCM: | ||
| 337 | # command "nc example.org 8765" | ||
| 338 | # format "44100:16:2" | ||
| 339 | #} | ||
| 340 | # | ||
| 341 | ## An example of a null output (for no audio output): | ||
| 342 | # | ||
| 343 | #audio_output { | ||
| 344 | # type "null" | ||
| 345 | # name "My Null Output" | ||
| 346 | # mixer_type "none" # optional | ||
| 347 | #} | ||
| 348 | # | ||
| 349 | ############################################################################### | ||
| 350 | |||
| 351 | |||
| 352 | # Normalization automatic volume adjustments ################################## | ||
| 353 | # | ||
| 354 | # This setting specifies the type of ReplayGain to use. This setting can have | ||
| 355 | # the argument "off", "album", "track" or "auto". "auto" is a special mode that | ||
| 356 | # chooses between "track" and "album" depending on the current state of | ||
| 357 | # random playback. If random playback is enabled then "track" mode is used. | ||
| 358 | # See <http://www.replaygain.org> for more details about ReplayGain. | ||
| 359 | # This setting is off by default. | ||
| 360 | # | ||
| 361 | #replaygain "album" | ||
| 362 | # | ||
| 363 | # This setting sets the pre-amp used for files that have ReplayGain tags. By | ||
| 364 | # default this setting is disabled. | ||
| 365 | # | ||
| 366 | #replaygain_preamp "0" | ||
| 367 | # | ||
| 368 | # This setting sets the pre-amp used for files that do NOT have ReplayGain tags. | ||
| 369 | # By default this setting is disabled. | ||
| 370 | # | ||
| 371 | #replaygain_missing_preamp "0" | ||
| 372 | # | ||
| 373 | # This setting enables or disables ReplayGain limiting. | ||
| 374 | # MPD calculates actual amplification based on the ReplayGain tags | ||
| 375 | # and replaygain_preamp / replaygain_missing_preamp setting. | ||
| 376 | # If replaygain_limit is enabled MPD will never amplify audio signal | ||
| 377 | # above its original level. If replaygain_limit is disabled such amplification | ||
| 378 | # might occur. By default this setting is enabled. | ||
| 379 | # | ||
| 380 | #replaygain_limit "yes" | ||
| 381 | # | ||
| 382 | # This setting enables on-the-fly normalization volume adjustment. This will | ||
| 383 | # result in the volume of all playing audio to be adjusted so the output has | ||
| 384 | # equal "loudness". This setting is disabled by default. | ||
| 385 | # | ||
| 386 | #volume_normalization "no" | ||
| 387 | # | ||
| 388 | ############################################################################### | ||
| 389 | |||
| 390 | # Character Encoding ########################################################## | ||
| 391 | # | ||
| 392 | # If file or directory names do not display correctly for your locale then you | ||
| 393 | # may need to modify this setting. | ||
| 394 | # | ||
| 395 | #filesystem_charset "UTF-8" | ||
| 396 | # | ||
| 397 | ############################################################################### | ||
