Advertisement
Guest User

Untitled

a guest
Sep 17th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.61 KB | None | 0 0
  1. variables: variables.yml
  2. templates:
  3.   global:
  4.     private_torrents: no
  5.     parsing:
  6.       movie: guessit
  7.       series: guessit
  8.     regexp:
  9.       reject:
  10.         - \bemporada\b: {from: title}
  11.  
  12.     content_filter:
  13.       require:
  14.         - '*.avi'
  15.         - '*.mkv'
  16.         - '*.mpg'
  17.         - '*.mp4'
  18.       reject:
  19.         - 'password.txt'
  20.         - '*.wmv'
  21.         - '*.sfv'
  22.         - '*.[sS]ample'
  23.    
  24.   transmissionrpc:
  25.     torrent_alive: yes #number of seeders needed to accept
  26.     transmission:
  27.       host: localhost
  28.       port: 9091
  29.       username: '{? transmission.usr ?}'
  30.       password: '{? transmission.pwd ?}'
  31.       include_subs: yes
  32.     clean_transmission:
  33.       host: localhost
  34.       port: 9091
  35.       username: '{? transmission.usr ?}'
  36.       password: '{? transmission.pwd ?}'
  37.       min_ratio: 1
  38.       transmission_seed_limits: Yes
  39.       enabled: Yes
  40.  
  41.   download-show:
  42.     discover:
  43.       what:
  44.         - next_series_episodes: yes
  45.             #backfill: yes
  46.             #from_start: yes
  47.       from:
  48.         - rarbg:
  49.             category: [1, 18, 41, 49]              
  50.       release_estimations: strict #only download those with air dates
  51.  
  52.   download-show-pack:
  53.     discover:
  54.       what:
  55.         - next_series_seasons: yes
  56.             #backfill: yes
  57.             #from_start: yes
  58.       from:
  59.         - piratebay:
  60.             category: highres tv
  61.         - limetorrents:
  62.             category: tv
  63.         - rarbg:
  64.             category: [1, 18, 41, 49]  
  65.  
  66.       release_estimations: strict #only download those with air dates
  67.  
  68. tasks:
  69.      
  70.   copy_trakt_follow_watchlist:
  71.     priority: 1
  72.     disable: seen
  73.     trakt_list:
  74.       username: '{? trakt.username ?}'
  75.       account: '{? trakt.account ?}'
  76.       list: follow
  77.       type: shows
  78.     accept_all: yes
  79.     list_add:
  80.       - trakt_list:
  81.           username: '{? trakt.username ?}'
  82.           account: '{? trakt.account ?}'
  83.           list: watchlist
  84.          
  85.   copy_trakt_backlog_watchlist:
  86.     priority: 2
  87.     disable: seen
  88.     trakt_list:
  89.       username: '{? trakt.username ?}'
  90.       account: '{? trakt.account ?}'
  91.       list: backlog
  92.       type: shows
  93.     accept_all: yes
  94.     list_add:
  95.       - trakt_list:
  96.           username: '{? trakt.username ?}'
  97.           account: '{? trakt.account ?}'
  98.           list: watchlist
  99.  
  100.   get_series:
  101.     priority: 7
  102.     configure_series:
  103.       settings:
  104.         season_packs: no
  105.         target: 720p+
  106.         identified_by: ep
  107.         exact: yes
  108.       from:
  109.         trakt_list:
  110.           username: '{? trakt.username ?}'
  111.           account: '{? trakt.account ?}'
  112.           list: follow
  113.           type: shows
  114.           strip_dates: yes
  115.     set:
  116.       path: /home/osmc/Downloads/Tv/
  117.     template:
  118.       - transmissionrpc
  119.       - download-show
  120.  
  121.   get_series_packs:
  122.     priority: 8
  123.     configure_series:
  124.       from:
  125.         trakt_list:
  126.           username: '{? trakt.username ?}'
  127.           account: '{? trakt.account ?}'
  128.           list: backlog
  129.           type: shows
  130.           strip_dates: yes
  131.       settings:
  132.         timeframe: 6 hours
  133.         season_packs: only
  134.         target: 720p hdtv
  135.         identified_by: ep
  136.         exact: yes
  137.     set:
  138.       path: /home/osmc/Downloads/Tv/
  139.     template:
  140.       - transmissionrpc
  141.       - download-show-pack
  142.      
  143.   get_series_begin:
  144.     priority: 6
  145.     disable: seen
  146.     next_trakt_episodes:
  147.       username: '{? trakt.username ?}'
  148.       account: '{? trakt.account ?}'
  149.       list: watchlist
  150.       context: collected
  151.       position: next
  152.       strip_dates: yes
  153.     accept_all: yes
  154.     set_series_begin: yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement