Advertisement
Usagi-chan

Untitled

Apr 10th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. music_directory "/srv/mpd/music"
  2. playlist_directory "/srv/mpd/playlists"
  3. db_file "/var/lib/mpd/tag_cache"
  4. log_file "/var/log/mpd/mpd.log"
  5. pid_file "/var/run/mpd/pid"
  6. user "mpd"
  7. bind_to_address "0.0.0.0"
  8. port "6600"
  9. log_level "verbose"
  10. follow_outside_symlinks "yes"
  11. follow_inside_symlinks "yes"
  12. input {
  13. plugin "curl"
  14. # proxy "proxy.isp.com:8080"
  15. # proxy_user "user"
  16. # proxy_password "password"
  17. }
  18. #audio_output {
  19. # type "alsa"
  20. # name "My ALSA Device"
  21. # device "hw:0,0" # optional
  22. # format "44100:16:2" # optional
  23. # mixer_device "default" # optional
  24. # mixer_control "PCM" # optional
  25. # mixer_index "0" # optional
  26. #}
  27. audio_output {
  28. type "httpd"
  29. name "My HTTP Stream"
  30. encoder "vorbis" # optional, vorbis or lame
  31. port "8080"
  32. # quality "5.0" # do not define if bitrate is defined
  33. bitrate "192" # do not define if quality is defined
  34. format "44100:16:1"
  35. }
  36. filesystem_charset "UTF-8"
  37. id3v1_encoding "UTF-8"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement