mpd.conf 1.0 KB

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