Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. sticker_file "/var/lib/mpd/sticker.sql"
  2. state_file "/var/lib/mpd/state"
  3. db_file "/var/lib/mpd/tag_cache"
  4. log_file "/var/log/mpd/mpd.log"
  5. pid_file "/run/mpd/pid"
  6.  
  7. playlist_directory "/storage/Playlists"
  8. music_directory "/storage/Music"
  9.  
  10. bind_to_address "192.168.180.150"
  11. bind_to_address "127.0.0.1"
  12.  
  13. user "mpd"
  14. group "audio"
  15.  
  16. filesystem_charset "UTF-8"
  17. id3v1_encoding "UTF-8"
  18.  
  19. gapless_mp3_playback "no"
  20.  
  21. auto_update "yes"
  22. follow_inside_symlinks "yes"
  23. follow_outside_symlinks "yes"
  24.  
  25. input {
  26. plugin "curl"
  27. }
  28.  
  29. resampler {
  30. plugin "soxr"
  31. quality "very high"
  32. threads "0"
  33. }
  34.  
  35. decoder {
  36. plugin "ffmpeg"
  37. enabled "yes"
  38. analyzeduration "1000000000"
  39. probesize "1000000000"
  40. }
  41.  
  42. audio_output {
  43. type "alsa"
  44. name "alsa"
  45. device "hw:0,0"
  46. # 48000 / 19.2 oscillator = 2500
  47. format "48000:24:2"
  48. }
  49.  
  50. volume_normalization "no"
  51. buffer_before_play "10%"
  52. audio_buffer_size "8192"
  53.  
  54. max_playlist_length "32384"
  55. max_output_buffer_size "16384"
  56. max_command_list_size "8192"
  57. max_connections "20"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement