mpd.conf 909 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. error_file "~/.mpd/error-log"
  9. # An example of an ALSA output
  10. audio_output {
  11. type "alsa"
  12. name "My ALSA Device"
  13. device "hw:0,0" # optional
  14. format "44100:16:2" # optional
  15. }
  16. # An example of an ESD output
  17. #audio_output {
  18. # type "ao"
  19. # driver "esd"
  20. # name "esd"
  21. #}
  22. # Volume control mixer
  23. mixer_type "alsa"
  24. # shout example
  25. #audio_output {
  26. # type "shout"
  27. # name "personal mpd stream"
  28. # host "127.0.0.1"
  29. # port "8000"
  30. # mount "/mpd"
  31. # quality "5.0"
  32. # format "44100:16:2"
  33. # user "source"
  34. # password "musicrockz"
  35. #}