Advertisement
Guest User

Untitled

a guest
Sep 17th, 2016
7,242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. # For further information about options in this file see:
  2. # http://docs.mopidy.com/
  3. #
  4. # The initial commented out values reflect the defaults as of:
  5. # Mopidy 2.0.1
  6. # Mopidy-File 2.0.1
  7. # Mopidy-HTTP 2.0.1
  8. # Mopidy-Local 2.0.1
  9. # Mopidy-M3U 2.0.1
  10. # Mopidy-MPD 2.0.1
  11. # Mopidy-SoftwareMixer 2.0.1
  12. # Mopidy-Spotify 3.0.0
  13. # Mopidy-Stream 2.0.1
  14. #
  15. # Available options and defaults might have changed since then,
  16. # run `mopidy config` to see the current effective config and
  17. # `mopidy --version` to check the current version.
  18.  
  19. [core]
  20. #cache_dir = $XDG_CACHE_DIR/mopidy
  21. #config_dir = $XDG_CONFIG_DIR/mopidy
  22. #data_dir = $XDG_DATA_DIR/mopidy
  23. #max_tracklist_length = 10000
  24.  
  25. [logging]
  26. #color = true
  27. #console_format = %(levelname)-8s %(message)s
  28. #debug_format = %(levelname)-8s %(asctime)s [%(process)d:%(threadName)s] %(name)s\n %(message)s
  29. #debug_file = mopidy.log
  30. #config_file =
  31.  
  32. [audio]
  33. #mixer = software
  34. #mixer_volume =
  35. #output = autoaudiosink
  36. #buffer_time =
  37.  
  38. [proxy]
  39. #scheme =
  40. #hostname =
  41. #port =
  42. #username =
  43. #password =
  44.  
  45. [spotify]
  46. enabled = true
  47. username = ###PUT SPOTIFY USERNAME HERE###
  48. password = ###PUT SPOTIFY PASSWORD HERE###
  49. bitrate = 160
  50. volume_normalization = true
  51. private_session = false
  52. timeout = 10
  53. allow_cache = true
  54. allow_network = true
  55. allow_playlists = true
  56. search_album_count = 20
  57. search_artist_count = 10
  58. search_track_count = 50
  59. #toplist_countries =
  60.  
  61. [mpd]
  62. #enabled = true
  63. #hostname = 127.0.0.1
  64. #port = 6600
  65. #password =
  66. #max_connections = 20
  67. #connection_timeout = 60
  68. #zeroconf = Mopidy MPD server on $hostname
  69. #command_blacklist =
  70. # listall
  71. # listallinfo
  72. #default_playlist_scheme = m3u
  73.  
  74. [http]
  75. enabled = true
  76. hostname = 0.0.0.0
  77. port = 6680
  78. static_dir =
  79. zeroconf = Mopidy HTTP server on $hostname
  80.  
  81. [stream]
  82. #enabled = true
  83. #protocols =
  84. # http
  85. # https
  86. # mms
  87. # rtmp
  88. # rtmps
  89. # rtsp
  90. #metadata_blacklist =
  91. #timeout = 5000
  92.  
  93. [m3u]
  94. #enabled = true
  95. #base_dir = $XDG_MUSIC_DIR
  96. #default_encoding = latin-1
  97. #default_extension = .m3u8
  98. #playlists_dir =
  99.  
  100. [softwaremixer]
  101. #enabled = true
  102.  
  103. [file]
  104. #enabled = true
  105. #media_dirs =
  106. # $XDG_MUSIC_DIR|Music
  107. # ~/|Home
  108. #show_dotfiles = false
  109. #follow_symlinks = false
  110. #metadata_timeout = 1000
  111.  
  112. [local]
  113. #enabled = true
  114. #library = json
  115. #media_dir = $XDG_MUSIC_DIR
  116. #scan_timeout = 1000
  117. #scan_flush_threshold = 100
  118. #scan_follow_symlinks = false
  119. #excluded_file_extensions =
  120. # .directory
  121. # .html
  122. # .jpeg
  123. # .jpg
  124. # .log
  125. # .nfo
  126. # .png
  127. # .txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement