Advertisement
Guest User

Untitled

a guest
Jan 7th, 2013
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.93 KB | None | 0 0
  1. ############################################################################################################
  2. # you can use theese as you see fit. %artist_first %artist %album %genre %year %lame %group %release %decade
  3. # set to "" to disable
  4. #{/pwd1/} {mask}
  5. # ex. {/MP3/} {h:/ioftpd/site/sorted/music/music.by.genre/%genre/%release}
  6. # or {/MP3/|/ARCHIVE/MP3/} {h:/ioftpd/site/sorted/music/music.by.genre/%genre/%release}
  7.  
  8. set ioNJ(audio_sorting) {
  9. # {/MP3/} {C:/ioFTPD/_Sorted/Music/Artists/%artist_first/%artist/%release}
  10. {/MP3/} {C:/ioFTPD/_Sorted/Music/Genre/%genre/%release}
  11. {/MP3/} {C:/ioFTPD/_Sorted/Music/Group/%group/%release}
  12. {/MP3_arkiv/} {C:/ioFTPD/_Sorted/Music/Group/%group/%release}
  13. }
  14.  
  15.  
  16.  
  17. #Strip The from artist name?? 1= enable 0 = Disable
  18. set ioNJ(mp3_strip_the) 0
  19.  
  20.  
  21. #This will only Scan 1 File in the mp3 dir and sort after that. This is not as accurate as using sveral files.
  22. set ioNJ(mp3_fast_sorting) 1
  23.  
  24.  
  25. ######### ADD TO SORTING ALBUM
  26. # set to "" to disable
  27. # set to "" to disable
  28. # This will be added tot he end of the %album variable if found in dirname
  29. # Why? it catches regexp commands so you see a difference between several diffrent releases of the same album.
  30. # All of which are removed before sorting since people want to tag things their own way.
  31. # This catches things in regexp in album name instead and adds it to the end of the album name
  32. # Note that this will ONLY affect sorting and nothing else.
  33.  
  34. set ioNJ(special_sorting) {bonus|proper|promo|repack|reissue|fixed|release|trackfix|remastered|explicit|selection|retail|edition|ltd|limited edition|advance|sampler|cds|cdm|web|ep|vls|12inch|box set}
  35.  
  36. # How should the info be added to album? %special means whatever we got from dir
  37. set ioNJ(special_sorting_theme) { (%special)}
  38.  
  39. # Type Of link to create: 1= ntfs junction, 0 = ioftpd link
  40. set ioNJ(mp3_sym_type) 0
  41.  
  42. # www.discogs.com api id
  43. # Go to www.discogs.com and register then get your own id. It's free and only take a few seconds.
  44. set ioNJ(discogs_api_id) ""
  45.  
  46. # This goes online to lastfm and corrects artists name if warrented. 1=enabled 0=disabled
  47. set ioNJ(lastfm_correction) 0
  48.  
  49. ##Cover Download from here on out
  50.  
  51. #should we download cover?
  52. set ioNJ(get_cover_enabled) 0
  53.  
  54. #should we download fanart? 1= enable 0 = Disable
  55. set ioNJ(mp3_fanart_enabled) 0
  56.  
  57. #Should we try to get picture of artist?
  58. set ioNJ(mp3_overwrite_old_cover) 0
  59.  
  60.  
  61. # Try to download the Artist jpg and save it as folder.jpg, set to "" to disable. i.e:
  62. # set ioNJ(artist_pic) ""
  63. # if set to "" this will disable the downloading of artist pictures and speed up sorting.
  64. set ioNJ(artist_pic) ""
  65.  
  66.  
  67.  
  68.  
  69.  
  70. # in what order should we search the sites?
  71. # Avalible is: discogs , amazon, audioscrobbler, local
  72. #
  73. # The local searches for a file in uploaded dir named *front* and copies it to folder.jpg
  74. set ioNJ(search_order) {
  75. audioscrobbler
  76. discogs
  77. amazon
  78. local
  79. }
  80.  
  81. ##################### END OF CONFiG #######################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement