mpd.conf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # An example configuration file for MPD
  2. user "mpd"
  3. auto_update "no"
  4. music_directory "/data/music"
  5. playlist_directory "/data/mpd/playlists"
  6. state_file "/data/mpd/state"
  7. db_file "/data/mpd/database"
  8. pid_file "/var/run/mpd/mpd.pid"
  9. log_file "syslog"
  10. filesystem_charset "UTF-8"
  11. mixer_type "software"
  12. # An example of an ALSA output
  13. audio_output {
  14. type "alsa"
  15. name "My ALSA Device"
  16. device "hw:0,0"
  17. }
  18. # An example of an ALSA output (USB soundcard)
  19. #audio_output {
  20. # type "alsa"
  21. # name "My ALSA Device"
  22. # device "hw:0,0"
  23. # format "44100:16:2"
  24. # mixer_type "hardware"
  25. # mixer_control "Speaker"
  26. #}
  27. # An example of an ESD output
  28. #audio_output {
  29. # type "ao"
  30. # driver "esd"
  31. # name "esd"
  32. #}
  33. # shout example
  34. #audio_output {
  35. # type "shout"
  36. # name "personal mpd stream"
  37. # host "127.0.0.1"
  38. # port "8000"
  39. # mount "/mpd"
  40. # quality "5.0"
  41. # format "44100:16:2"
  42. # user "source"
  43. # password "musicrockz"
  44. #}