2006-09-13 01:16:14 +02:00
|
|
|
# An example configuration file for MPD
|
2006-09-13 19:04:14 +02:00
|
|
|
# See the mpd.conf man page for a more detailed description of each parameter.
|
2006-09-13 01:16:14 +02:00
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Required files and directories ##############################################
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting controls the top directory which MPD will search to discover the
|
|
|
|
# available audio files and add them to the daemon's online database.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
music_directory "~/music"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting sets the MPD internal playlist directory. The purpose of this
|
|
|
|
# directory is storage for playlists created by MPD. The server will use
|
|
|
|
# playlist files not created by the server but only if they are in the MPD
|
|
|
|
# format.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
playlist_directory "~/.mpd/playlists"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting sets the location of the MPD database. This file is used to
|
|
|
|
# load the database at server start up and store the database while the
|
|
|
|
# server is not up.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
db_file "~/.mpd/database"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# These settings are the locations for the daemon log files for the daemon.
|
|
|
|
# These logs are great for troubleshooting, depending on your log_level
|
|
|
|
# settings.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
2008-12-28 19:48:53 +01:00
|
|
|
# The special value "syslog" makes MPD use the local syslog daemon.
|
|
|
|
# On most systems, log messages will appear in /var/log/daemon.log
|
|
|
|
# then.
|
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
log_file "~/.mpd/log"
|
|
|
|
###############################################################################
|
2006-09-13 01:16:14 +02:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Optional files ##############################################################
|
2005-03-12 05:06:16 +01:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting sets the location of the file which stores the process ID
|
|
|
|
# for use of mpd --kill and some init scripts. This setting is disabled by
|
|
|
|
# default.
|
2005-03-06 05:27:19 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#pid_file "~/.mpd/pid"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting sets the location of the file which contains information about
|
|
|
|
# most variables to get MPD back into the same general shape it was in before
|
|
|
|
# it was brought down. This setting is disabled by default.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#state_file "~/.mpd/state"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2004-03-24 01:37:54 +01:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# General music daemon options ################################################
|
2006-09-13 01:16:14 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting specifies the user that MPD will run as, if set. MPD should
|
|
|
|
# never run as root and you may use this setting to make MPD change its user
|
|
|
|
# id after initialization. Do not use this setting if you start MPD as an
|
|
|
|
# unprivileged user. This setting is disabled by default, and the server will
|
|
|
|
# run as root.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#user "nobody"
|
2006-09-13 01:16:14 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting sets the address for the daemon to listen on. Careful attention
|
|
|
|
# should be paid if this is assigned to anything other then the default, any.
|
|
|
|
# This setting can deny access to control of the daemon.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
# For network
|
|
|
|
#bind_to_address "any"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
# And for Unix Socket
|
|
|
|
#bind_to_address "~/.mpd/socket"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting is the port that is desired for the daemon to get assigned to.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#port "6600"
|
2008-12-16 21:31:52 +01:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting controls the type of information which is logged. Available
|
|
|
|
# setting arguments are "default", "secure" or "verbose". The "verbose" setting
|
|
|
|
# argument is recommended for troubleshooting, though can quickly stretch
|
|
|
|
# available resources on limited hardware storage.
|
2008-12-16 21:31:52 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#log_level "default"
|
2006-09-13 01:16:14 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
# If you have a problem with your MP3s ending abruptly it is recommended that
|
|
|
|
# you set this argument to "no" to attempt to fix the problem. If this solves
|
|
|
|
# the problem, it is highly recommended to fix the MP3 files with vbrfix
|
|
|
|
# (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
|
|
|
|
# point gapless MP3 playback can be enabled.
|
2006-09-13 01:16:14 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#gapless_mp3_playback "yes"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting enables MPD to create playlists in a format usable by other
|
|
|
|
# music players.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
#save_absolute_paths_in_playlists "no"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting defines a list of tag types that will be extracted during the
|
|
|
|
# audio file discovery process. Optionally, 'comment' can be added to this
|
|
|
|
# list.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
#metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
|
|
|
|
#
|
|
|
|
###############################################################################
|
2007-06-03 22:09:12 +02:00
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Symbolic link behavior ######################################################
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# If this setting is set to "yes", MPD will discover audio files by following
|
|
|
|
# symbolic links outside of the configured music_directory.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
#follow_outside_symlinks "yes"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# If this setting is set to "yes, MPD will discover audio files by following
|
|
|
|
# symbolic links inside of the configured music_directory.
|
2008-12-21 07:09:06 +01:00
|
|
|
#
|
|
|
|
#follow_inside_symlinks "yes"
|
|
|
|
#
|
|
|
|
###############################################################################
|
2007-06-03 22:09:12 +02:00
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Zeroconf / Avahi Service Discovery ##########################################
|
2007-06-03 22:09:12 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# If this setting is set to "yes", service information will be published with
|
|
|
|
# Zeroconf / Avahi.
|
2007-06-03 20:08:51 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#zeroconf_enabled "yes"
|
2007-06-03 20:08:51 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# The argument to this setting will be the Zeroconf / Avahi unique name for
|
|
|
|
# this MPD server on the network.
|
2007-01-11 21:41:17 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#zeroconf_name "Music Player"
|
2007-01-11 21:41:17 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2004-03-24 01:37:54 +01:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Permissions #################################################################
|
2004-10-28 07:14:55 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# If this setting is set, MPD will require password authorization. The password
|
|
|
|
# can setting can be specified multiple times for different password profiles.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2006-09-13 01:16:14 +02:00
|
|
|
#password "password@read,add,control,admin"
|
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting specifies the permissions a user has who has not yet logged in.
|
2004-11-09 14:04:20 +01:00
|
|
|
#
|
2006-09-13 01:16:14 +02:00
|
|
|
#default_permissions "read,add,control,admin"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2004-07-18 14:48:17 +02:00
|
|
|
|
2004-10-29 20:28:06 +02:00
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Audio Output ################################################################
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# MPD supports various audio output types, as well as playing through multiple
|
|
|
|
# audio outputs at the same time, through multiple audio_output settings
|
|
|
|
# blocks. Setting this block is optional, though the server will only attempt
|
|
|
|
# autodetection for one sound card.
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# See <http://mpd.wikia.com/wiki/Configuration#Audio_Outputs> for examples of
|
|
|
|
# other audio outputs.
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2006-09-13 01:16:14 +02:00
|
|
|
# An example of an ALSA output:
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2006-09-13 01:16:14 +02:00
|
|
|
#audio_output {
|
2008-12-21 07:09:06 +01:00
|
|
|
# type "alsa"
|
|
|
|
# name "My ALSA Device"
|
|
|
|
# device "hw:0,0" # optional
|
|
|
|
# format "44100:16:2" # optional
|
2009-01-01 18:36:47 +01:00
|
|
|
# mixer_device "default" # optional
|
|
|
|
# mixer_control "PCM" # optional
|
2006-09-13 01:16:14 +02:00
|
|
|
#}
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2006-09-13 01:16:14 +02:00
|
|
|
# An example of an OSS output:
|
|
|
|
#
|
|
|
|
#audio_output {
|
2008-12-21 07:09:06 +01:00
|
|
|
# type "oss"
|
|
|
|
# name "My OSS Device"
|
|
|
|
# device "/dev/dsp" # optional
|
|
|
|
# format "44100:16:2" # optional
|
2009-01-01 18:36:47 +01:00
|
|
|
# mixer_device "/dev/mixer" # optional
|
|
|
|
# mixer_control "PCM" # optional
|
2006-09-13 01:16:14 +02:00
|
|
|
#}
|
|
|
|
#
|
|
|
|
# An example of a shout output (for streaming to Icecast):
|
|
|
|
#
|
|
|
|
#audio_output {
|
2008-12-21 07:09:06 +01:00
|
|
|
# type "shout"
|
|
|
|
# encoding "ogg" # optional
|
|
|
|
# name "My Shout Stream"
|
|
|
|
# host "localhost"
|
|
|
|
# port "8000"
|
|
|
|
# mount "/mpd.ogg"
|
|
|
|
# password "hackme"
|
|
|
|
# quality "5.0"
|
|
|
|
# bitrate "128"
|
|
|
|
# format "44100:16:1"
|
|
|
|
# protocol "icecast2" # optional
|
|
|
|
# user "source" # optional
|
|
|
|
# description "My Stream Description" # optional
|
|
|
|
# genre "jazz" # optional
|
|
|
|
# public "no" # optional
|
|
|
|
# timeout "2" # optional
|
2006-09-13 01:16:14 +02:00
|
|
|
#}
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
# An example of a httpd output (built-in HTTP streaming server):
|
|
|
|
#
|
|
|
|
#audio_output {
|
|
|
|
# type "httpd"
|
|
|
|
# name "My HTTP Stream"
|
2009-03-17 06:51:31 +01:00
|
|
|
# encoder "vorbis" # optional, vorbis or lame
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
# port "8000"
|
2009-03-17 06:51:31 +01:00
|
|
|
# #quality "5.0" # do not define if bitrate is defined
|
|
|
|
# bitrate "128" # do not define if quality is defined
|
httpd: new output plugin to replace "shout"
Let's get rid of the "shout" plugin, and the awfully complicated
icecast daemon setup! MPD can do better if it's doing the HTTP server
stuff on its own. This new plugin has several advantages:
- easier to set up - only one daemon, no password settings, no mount
settings
- MPD controls the encoder and thus already knows the packet
boundaries - icecast has to parse them
- MPD doesn't bother to encode data while nobody is listening
This implementation is very experimental (no header parsing, ignores
request URI, no icy-metadata, ...). It should be able to suport
several encoders in parallel in the future (with different bit rates,
different codec, ...), to make MPD the perfect streaming server. Once
MPD gets multi-player support, we can even mount several different
radio stations on one server.
2009-03-15 03:32:34 +01:00
|
|
|
# format "44100:16:1"
|
|
|
|
#}
|
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
# An example of a pulseaudio output (streaming to a remote pulseaudio server)
|
2007-05-30 18:58:39 +02:00
|
|
|
#
|
|
|
|
#audio_output {
|
2008-12-21 07:09:06 +01:00
|
|
|
# type "pulse"
|
|
|
|
# name "My Pulse Output"
|
|
|
|
# server "remote_server"
|
|
|
|
# sink "remote_server_sink"
|
2007-05-30 18:58:39 +02:00
|
|
|
#}
|
|
|
|
#
|
2009-02-28 16:11:59 +01:00
|
|
|
## Example "pipe" output:
|
|
|
|
#
|
|
|
|
#audio_output {
|
|
|
|
# type "pipe"
|
|
|
|
# name "my pipe"
|
|
|
|
# command "aplay -f cd 2>/dev/null"
|
|
|
|
## Or if you're want to use AudioCompress
|
|
|
|
# command "AudioCompress -m | aplay -f cd 2>/dev/null"
|
|
|
|
## Or to send raw PCM stream through PCM:
|
|
|
|
# command "nc example.org 8765"
|
|
|
|
# format "44100:16:2"
|
|
|
|
#}
|
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
## An example of a null output (for no audio output):
|
|
|
|
#
|
|
|
|
#audio_output {
|
|
|
|
# type "null"
|
|
|
|
# name "My Null Output"
|
|
|
|
#}
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting will change all decoded audio to be converted to the specified
|
|
|
|
# format before being passed to the audio outputs. By default, this setting is
|
|
|
|
# disabled.
|
2004-10-29 20:28:06 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#audio_output_format "44100:16:2"
|
2007-02-02 04:51:07 +01:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# If MPD has been compiled with libsamplerate support, this setting specifies
|
|
|
|
# the sample rate converter to use. Possible values can be found in the
|
|
|
|
# mpd.conf man page or the libsamplerate documentation. By default, this is
|
|
|
|
# setting is disabled.
|
2007-02-02 04:51:07 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#samplerate_converter "Fastest Sinc Interpolator"
|
|
|
|
#
|
|
|
|
###############################################################################
|
2004-10-29 20:28:06 +02:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Volume control mixer ########################################################
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
# MPD has limited volume controls, to use them pick one below. If one is not
|
2008-12-25 00:02:01 +01:00
|
|
|
# specified it may be autodetected at startup, depending on the dependencies
|
|
|
|
# which were compiled into the server.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-31 16:46:41 +01:00
|
|
|
# An example for controlling an ALSA or OSS mixer:
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-31 16:46:41 +01:00
|
|
|
#mixer_type "hardware"
|
2006-07-22 02:53:37 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
# This example is a general volume control mixer, it is used to adjust the
|
2008-12-25 00:02:01 +01:00
|
|
|
# volume of the audio sent to the audio output, and will work with all outputs.
|
2006-09-13 01:16:14 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#mixer_type "software"
|
2006-09-13 01:16:14 +02:00
|
|
|
#
|
2009-02-26 18:13:07 +01:00
|
|
|
# This example will not allow MPD to touch the mixer at all.
|
|
|
|
#
|
|
|
|
#mixer_type "disabled"
|
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2004-03-24 01:37:54 +01:00
|
|
|
|
2004-03-24 01:42:47 +01:00
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Normalization automatic volume adjustments ##################################
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting specifies the type of ReplayGain to use. This setting can have
|
|
|
|
# the argument "album" or "track". See <http://www.replaygain.org> for more
|
|
|
|
# details. By default this setting is disabled.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#replaygain "album"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting sets the pre-amp used for files that have ReplayGain tags. By
|
|
|
|
# default this setting is disabled.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#replaygain_preamp "0"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting enables on-the-fly normalization volume adjustment. This will
|
|
|
|
# result in the volume of all playing audio to be adjusted so the output has
|
|
|
|
# equal "loudness".
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#volume_normalization "no"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2004-06-23 13:52:25 +02:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# MPD Internal Buffering ######################################################
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting adjusts the size of internal decoded audio buffering. Changing
|
|
|
|
# this may have undesired effects. Don't change this if you don't know what you
|
|
|
|
# are doing.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#audio_buffer_size "2048"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting controls the percentage of the buffer which is filled before
|
|
|
|
# beginning to play. Increasing this reduces the chance of audio file skipping,
|
|
|
|
# at the cost of increased time prior to audio playback.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#buffer_before_play "10%"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2004-03-24 01:37:54 +01:00
|
|
|
|
2004-03-24 01:42:47 +01:00
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# HTTP Streaming Proxy ########################################################
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting specifies the HTTP proxy to use for playing HTTP streams. By
|
|
|
|
# default, these settings will be disabled.
|
2005-03-06 20:00:58 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#http_proxy_host "proxy.isp.com"
|
|
|
|
#http_proxy_port "8080"
|
|
|
|
#http_proxy_user "user"
|
|
|
|
#http_proxy_password "password"
|
2006-06-21 22:52:51 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2006-09-13 01:16:14 +02:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Resource Limitations ########################################################
|
2006-06-21 22:52:51 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# These settings are various limitations to prevent MPD from using too many
|
|
|
|
# resources. Generally, these settings should be minimized to prevent security
|
|
|
|
# risks, depending on the operating resources.
|
2004-11-10 22:58:27 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#connection_timeout "60"
|
|
|
|
#max_connections "10"
|
|
|
|
#max_playlist_length "16384"
|
|
|
|
#max_command_list_size "2048"
|
|
|
|
#max_output_buffer_size "8192"
|
2004-11-10 22:58:27 +01:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
###############################################################################
|
2006-09-13 01:16:14 +02:00
|
|
|
|
|
|
|
|
2008-12-21 07:09:06 +01:00
|
|
|
# Character Encoding ##########################################################
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# If file or directory names do not display correctly for your locale then you
|
|
|
|
# may need to modify this setting. After modification of this setting mpd
|
|
|
|
# --create-db must be run to change the database.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#filesystem_charset "UTF-8"
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-25 00:02:01 +01:00
|
|
|
# This setting controls the encoding that ID3v1 tags should be converted from.
|
2004-07-18 14:48:17 +02:00
|
|
|
#
|
2008-12-21 07:09:06 +01:00
|
|
|
#id3v1_encoding "ISO-8859-1"
|
2006-12-23 19:56:23 +01:00
|
|
|
#
|
2008-12-21 19:39:08 +01:00
|
|
|
###############################################################################
|