Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. at /etc/mpd.conf
  2. music_directory "/home/mpd/Musics"
  3.  
  4. playlist_directory "/home/mpd/Musics/.playlist"
  5.  
  6. db_file "/home/mpd/.mpd/database"
  7.  
  8. log_file "/home/mpd/.mpd/log"
  9.  
  10. pid_file "/home/mpd/.mpd/pid"
  11.  
  12. state_file "/home/mpd/.mpd/state"
  13.  
  14. #sticker_file "~/.mpd/sticker.sql"
  15. password "abfab126@read,add,control,admin"
  16.  
  17. ### CONFIG ########################################################
  18.  
  19. user "mpd"
  20. group "mpd"
  21. gapless_mp3_playback "yes"
  22. bind_to_address "0.0.0.0"
  23. port "6600"
  24. auto_update "yes"
  25. auto_update_depth "3"
  26. zeroconf_enabled "yes"
  27. zeroconf_name "MPD Music Player"
  28. samplerate_converter "Best Sinc Interpolator"
  29. filesystem_charset "UTF-8"
  30. id3v1_encoding "ISO-8859-1"
  31. replaygain "album"
  32. replaygain_preamp "0"
  33. replaygain_missing_preamp "-10"
  34. audio_buffer_size "32768"
  35. buffer_before_play "25%"
  36. max_connections "20"
  37. connection_timeout "655350"
  38. #log_level "default"
  39.  
  40. ### INPUT #########################################################
  41.  
  42. input {
  43. plugin "curl"
  44. }
  45.  
  46.  
  47. ### OUTPUT ########################################################
  48.  
  49.  
  50.  
  51. audio_output {
  52. type "httpd"
  53. name "HTTP Stream"
  54. encoder "lame" # optional, vorbis(OGG) or lame(MP3)
  55. port "8000"
  56. bitrate "192" # do not define if quality is defined
  57. format "44100:16:1"
  58. }
  59.  
  60.  
  61. audio_output {
  62. type "ao"
  63. driver "null"
  64. name "Dummy output"
  65. }
  66.  
  67. # PLUGIN ##########################################################
  68.  
  69. playlist_plugin {
  70. name "soundcloud"
  71. enabled "true"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement