mpd.conf 1.0 KB

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