Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. music_directory "/home/waka/music"
  2. db_file "/home/waka/.mpd/database"
  3. log_file "/home/waka/.mpd/log"
  4. pid_file "/home/waka/.mpd/pid"
  5. state_file "/home/waka/.mpd/state"
  6. playlist_directory "/home/waka/.mpd/playlists"
  7. log_level "default"
  8. #password "password@read,add,control,admin"
  9. #default_permissions "read,add,control,admin"
  10. #user "waka"
  11. #bind_to_address "303"
  12. bind_to_address "127.0.0.1"
  13. bind_to_address "/home/waka/.mpd/socket"
  14. port "6600"
  15. gapless_mp3_playback "yes"
  16. auto_update "yes"
  17. #auto_update_depth "3"
  18.  
  19. input {
  20. plugin "curl"
  21. proxy "proxy.isp.com:8000"
  22. proxy_user "user"
  23. proxy_password "password"
  24. }
  25.  
  26. audio_output {
  27. type "alsa"
  28. name "Alsa output"
  29. device "hw:0,0"
  30. format "44100:16:2"
  31. mixer_type "hardware"
  32. mixer_device "default"
  33. mixer_control "PCM"
  34. mixer_index "0"
  35. }
  36.  
  37. #audio_output {
  38. # type "httpd"
  39. # name "Internet Stream"
  40. # encoder "lame"
  41. # port "8000"
  42. # bind_to_address "192.168.1.13"
  43. # quality "5.0"
  44. # bitrate "128"
  45. # format "44100:16:1"
  46. # max_clients "3"
  47. #}
  48.  
  49. #audio_output {
  50. # type "recorder"
  51. # name "My recorder"
  52. # encoder "vorbis"
  53. # path "/home/carnager/stream.ogg"
  54. # quality "7.0" # do not define if bitrate is defined
  55. # bitrate "128" # do not define if quality is defined
  56. # format "44100:16:1"
  57. #}
  58.  
  59. replaygain "album"
  60. replaygain_preamp "0"
  61. #volume_normalization "no"
  62. #audio_buffer_size "2048"
  63. #buffer_before_play "10%"
  64. #connection_timeout "60"
  65. #max_connections "10"
  66. #max_playlist_length "16384"
  67. #max_command_list_size "2048"
  68. #max_output_buffer_size "8192"
  69. #filesystem_charset "UTF-8"
  70. #id3v1_encoding "ISO-8859-1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement