123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # An example configuration file for MPD
- user "root"
- auto_update "no"
- music_directory "/music"
- playlist_directory "/etc/mpd/playlists"
- state_file "/etc/mpd/state"
- db_file "/data/mpd/database"
- pid_file "/var/run/mpd.pid"
- log_file "syslog"
- filesystem_charset "UTF-8"
- id3v1_encoding "UTF-8"
- # An example of an ALSA output
- audio_output {
- type "alsa"
- name "My ALSA Device"
- device "hw:0,0"
- format "44100:16:2"
- }
- # An example of an ALSA output (USB soundcard)
- #audio_output {
- # type "alsa"
- # name "My ALSA Device"
- # device "hw:0,0"
- # format "44100:16:2"
- # mixer_type "hardware"
- # mixer_control "Speaker"
- #}
- # An example of an ESD output
- #audio_output {
- # type "ao"
- # driver "esd"
- # name "esd"
- #}
- # shout example
- #audio_output {
- # type "shout"
- # name "personal mpd stream"
- # host "127.0.0.1"
- # port "8000"
- # mount "/mpd"
- # quality "5.0"
- # format "44100:16:2"
- # user "source"
- # password "musicrockz"
- #}
|