Advertisement
Guest User

Mopidy Config

a guest
Apr 12th, 2016
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. [core]
  2. cache_dir = $XDG_CACHE_DIR/mopidy
  3. config_dir = $XDG_CONFIG_DIR/mopidy
  4. data_dir = $XDG_DATA_DIR/mopidy
  5. max_tracklist_length = 10000
  6.  
  7. [logging]
  8. color = true
  9. console_format = %(levelname)-8s %(message)s
  10. debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
  11. debug_file = mopidy.log
  12. config_file =
  13.  
  14. [audio]
  15. mixer = software
  16. mixer_volume =
  17. output = autoaudiosink
  18. buffer_time =
  19.  
  20. [proxy]
  21. scheme =
  22. hostname =
  23. port =
  24. username =
  25. password =
  26.  
  27. [moped]
  28. enabled = true
  29.  
  30. [mpd]
  31. enabled = true
  32. hostname = 0.0.0.0
  33. port = 6600
  34. password =
  35. max_connections = 20
  36. connection_timeout = 60
  37. zeroconf = Mopidy MPD server on $hostname
  38. command_blacklist =
  39. listall
  40. listallinfo
  41. default_playlist_scheme = m3u
  42.  
  43. [http]
  44. enabled = true
  45. hostname = 0.0.0.0
  46. port = 6680
  47. static_dir =
  48. zeroconf = Mopidy HTTP server on $hostname
  49.  
  50. [stream]
  51. enabled = true
  52. protocols =
  53. http
  54. https
  55. mms
  56. rtmp
  57. rtmps
  58. rtsp
  59. metadata_blacklist =
  60. timeout = 5000
  61.  
  62. [m3u]
  63. enabled = true
  64. base_dir = /mnt/NAS/music/playlist
  65. default_encoding = latin-1
  66. default_extension = .m3u8
  67. playlists_dir =
  68.  
  69. [softwaremixer]
  70. enabled = true
  71.  
  72. [file]
  73. enabled = true
  74. media_dirs = /mnt/NAS/music
  75. show_dotfiles = false
  76. follow_symlinks = false
  77. metadata_timeout = 1000
  78.  
  79. [local]
  80. enabled = true
  81. library = json
  82. media_dir = $XDG_MUSIC_DIR
  83. scan_timeout = 1000
  84. scan_flush_threshold = 100
  85. scan_follow_symlinks = false
  86. excluded_file_extensions =
  87. .directory
  88. .html
  89. .jpeg
  90. .jpg
  91. .log
  92. .nfo
  93. .png
  94. .txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement