Advertisement
Guest User

Untitled

a guest
Feb 4th, 2017
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.94 KB | None | 0 0
  1. schedules:
  2. - tasks: [TV-SHOWS,MOVIES]
  3. interval:
  4. minutes: 90
  5. - tasks: [IMPORT-MOVIES]
  6. interval:
  7. minutes: 120
  8.  
  9. templates:
  10. tv:
  11. deluge:
  12. username: deluge-user
  13. password: deluge-password
  14. main_file_only: no
  15. keep_subs: yes
  16. ratio: 2
  17. removeatratio: yes
  18. path: /media/usb_hd/TV_Series
  19. configure_series:
  20. settings:
  21. quality: webdl|hdtv|webrip h264 720p
  22. propers: no
  23. from:
  24. trakt_list:
  25. username: trakt-user
  26. list: watchlist
  27. type: shows
  28. strip_dates: yes
  29. regexp:
  30. from: title
  31. reject:
  32. - msd
  33. - afg
  34. - line
  35. - (s|d)ub(s|bed)?\b: {from: title} # Block any subbed/dubbed/etc videos
  36. - \btrailer\b: {from: title} # I've gotten a few trailers that matched as movies. VERY annoying
  37. - \bR5\b: {from: title} # The following are poor quality types that somehow got through the quality
  38. - \bWEBSCR\b: {from: title} # features usually due to the title including a keyword like "720p" as well
  39. - \bscreener\b: {from: title}
  40. - \bTS\b: {from: title}
  41. - \bCam\b: {from: title}
  42. - \bRAW\b: {from: title}
  43. - \bfrench\b: {from: title}
  44. - \bgerman\b: {from: title}
  45. - \bita\b: {from: title}
  46. - \bspanish\b: {from: title}
  47. - \bvostfr\b: {from: title}
  48. - '(?x) (?:_|\b) (?: preview | sneak \W+ peek | trailer | behind \W+ the \W+ scenes | first \W+ look | making \W+ of ) (?:_|\b)': {from: title}
  49. - '(?x) \b subbed \b'
  50. - subbed
  51. - \[Hive-CM8\]: {from: title}
  52. - \[facepalm\]: {from: title}
  53.  
  54. content_size:
  55. min: 400
  56. max: 3000
  57. strict: no
  58.  
  59. inputs:
  60. - rss: https://source
  61. - rss: http://source
  62.  
  63. movie:
  64. deluge:
  65. username: deluge-user
  66. password: deluge-password
  67. main_file_only: no
  68. keep_subs: yes
  69. ratio: 2
  70. removeatratio: yes
  71. path: /media/usb_hd/Movies
  72. quality: bluray|webdl h264 720p
  73. imdb_lookup: yes
  74. list_match:
  75. from:
  76. - movie_list: mymovies
  77. regexp:
  78. from: title
  79. reject:
  80. - msd
  81. - afg
  82. - line
  83. - hc
  84. - korsub
  85. - (s|d)ub(s|bed)?\b: {from: title} # Block any subbed/dubbed/etc videos
  86. - \btrailer\b: {from: title} # I've gotten a few trailers that matched as movies. VERY annoying
  87. - \bR5\b: {from: title} # The following are poor quality types that somehow got through the quality
  88. - \bWEBSCR\b: {from: title} # features usually due to the title including a keyword like "720p" as well
  89. - \bscreener\b: {from: title}
  90. - \bTS\b: {from: title}
  91. - \bCam\b: {from: title}
  92. - \bRAW\b: {from: title}
  93. - \bfrench\b: {from: title}
  94. - \bgerman\b: {from: title}
  95. - \bita\b: {from: title}
  96. - \bspanish\b: {from: title}
  97. - \bvostfr\b: {from: title}
  98. - '(?x) (?:_|\b) (?: preview | sneak \W+ peek | trailer | behind \W+ the \W+ scenes | first \W+ look | making \W+ of ) (?:_|\b)': {from: title}
  99. - '(?x) \b subbed \b'
  100. - subbed
  101. - \[Hive-CM8\]: {from: title}
  102. - \[facepalm\]: {from: title}
  103. content_filter:
  104. require:
  105. - '*.avi'
  106. - '*.mkv'
  107. - '*.mp4'
  108. reject: '*.wmv'
  109. content_size:
  110. min: 1500
  111. max: 10000
  112. strict: no
  113. inputs:
  114. - rss: https://source
  115. - rss: http://source
  116.  
  117. tasks:
  118. TV-SHOWS:
  119. template: tv
  120. priority: 1
  121.  
  122. IMPORT-MOVIES:
  123. priority: 2
  124. inputs:
  125. - trakt_list:
  126. username: trakt-user
  127. list: watchlist
  128. type: movies
  129. accept_all: yes
  130. list_add:
  131. - movie_list: mymovies
  132. priority: 2
  133.  
  134. MOVIES:
  135. template: movie
  136. priority: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement