Guest User

Untitled

a guest
Sep 21st, 2017
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 4.14 KB | None | 0 0
  1.  
  2. templates:
  3.   global:
  4.     verify_ssl_certificates: no
  5.     retry_failed:
  6.       retry_time: 60 minutes
  7.       retry_time_multiplier: 2 # Amount retry time will be multiplied by after each successive failure
  8.       max_retries: 10
  9.  
  10.   DOWNLOAD:
  11.     rtorrent:
  12.       uri: scgi://192.168.0.210:5000
  13.       action: add
  14.       mkdir: no
  15.       digest_auth: no
  16.     #rtor_select: true
  17.     path_by_space:
  18.       select: most_free
  19.       within: 8GiB
  20.       paths:
  21.        - /data
  22.  
  23.   TVHD_REVTT:
  24.     rss:
  25.       url: /Users/stevenadams/.flexget/test.xml
  26.       #url: https://revolutiontt.me/rss.php?feed=dl&cat=7,41,42&passkey=xxxx
  27.   MOVIESHD_REVTT:
  28.     rss:
  29.       url: https://revolutiontt.me/rss.php?feed=dl&cat=10,12,20&passkey=xxxx
  30.   MOVIESD_REVTT:
  31.     rss:
  32.       url: https://revolutiontt.me/rss.php?feed=dl&cat=10,12,20&passkey=xxxx
  33.  
  34.  
  35.   ##############################
  36.   ###### TV Show TEMPLATES #####
  37.   ##############################
  38.   TV_COMMON:
  39.     lazy_ignore: true
  40.     set:
  41.       path: "{{ path }}/TVHD"
  42.       custom1: "TVHD"
  43.       custom2: "{{ imdb_url }}"
  44.       custom3: "{{ tvdb_id }}"
  45.  
  46.   TV_EXISTING:
  47.     priority: 1
  48.     thetvdb_lookup: yes
  49.     metainfo_series: true
  50.     configure_series:
  51.       from:
  52.        #filesystem:
  53.         #  - /data/TVShows
  54.         plex:
  55.           section: 2
  56.           server: 127.0.0.1
  57.           port: 32400
  58.           username: stevezau@gmail.com
  59.           password: xxxxxx
  60.       settings:
  61.         upgrade: yes
  62.         timeframe: 1 hours
  63.         target: 720p
  64.         propers: 3 days
  65.     regexp:
  66.       from: title
  67.       accept:
  68.        - national.geographic
  69.         - discovery.channel
  70.         - history.channel
  71.  
  72.   TV_SUGGESTED:
  73.     priority: 3
  74.     require_field:
  75.      - series_guessed
  76.       - tvdb_series_name
  77.     plugin_priority:
  78.       imdb: 25
  79.     metainfo_series: true
  80.     thetvdb_lookup: yes
  81.     list_add:
  82.       - pending_list: TV Auto
  83.  
  84.   TV_NEW:
  85.     priority: 2
  86.     require_field:
  87.      - imdb_id
  88.     plugin_priority:
  89.       require_field: 100  # Run before if plugin so it eval imdb_id from tvdb
  90.       imdb_lookup: 90  # Run after the thetvdb_lookup plugin so it look's up the imdb_id via thetvdb first
  91.     metainfo_series: yes
  92.     thetvdb_lookup: yes
  93.     imdb_lookup: yes
  94.     if:
  95.       - imdb_score < 6: reject
  96.       - imdb_votes < 600: reject
  97.     series_premiere:
  98.       allow_seasonless: yes
  99.     list_add:
  100.       - pending_list: TV New
  101.  
  102.   TV_NETWORK:
  103.     priority: 4
  104.     require_field:
  105.      - series_guessed
  106.     thetvdb_lookup: yes
  107.     metainfo_series: true
  108.     list_add:
  109.       - pending_list: TV Network
  110.     regexp:
  111.       accept:
  112.         - Reality:
  113.             from: tvdb_genres
  114.         - Documentary:
  115.             from: tvdb_genres
  116.         - Science-Fiction:
  117.             from: tvdb_genres
  118.         - Discovery:
  119.             from: tvdb_network
  120.         - SciFi:
  121.             from: tvdb_network
  122.         - Syfy:
  123.             from: tvdb_network
  124.         - National Geographic:
  125.             from: tvdb_network
  126.         - History:
  127.             from: tvdb_network
  128.         - Animal Planet:
  129.             from: tvdb_network
  130.         - Crime and Investigation Network:
  131.             from: tvdb_network
  132.       rest: reject
  133.  
  134.  
  135. ###################
  136. ###### TASKS ######
  137. ###################
  138. tasks:
  139.   ####################
  140.   ###### TV Show #####
  141.   ####################
  142.  
  143.   # REVTT #
  144.   TV_EXISTING_REVTT:
  145.     template:
  146.      - TV_COMMON
  147.       - TV_EXISTING
  148.       - TVHD_REVTT
  149.       - DOWNLOAD
  150.  
  151.   TV_SUGGESTED_REVTT:
  152.     template:
  153.      - TV_SUGGESTED
  154.       - TVHD_REVTT
  155.  
  156.   TV_NEW_REVTT:
  157.     template:
  158.      - TV_NEW
  159.       - TVHD_REVTT
  160.  
  161.   TV_NETWORK_REVTT:
  162.     template:
  163.      - TV_NETWORK
  164.       - TVHD_REVTT
  165.  
  166.  
  167.   # Download approved
  168.   TV_NETWORK_DOWNLOAD:
  169.     pending_list: TV Network
  170.     seen: local
  171.     list_match:
  172.       remove_on_match: false
  173.       from:
  174.         - pending_list: TV Network
  175.     template:
  176.      - TV_COMMON
  177.       - DOWNLOAD
  178.  
  179.   TV_NEW_DOWNLOAD:
  180.     pending_list: TV New
  181.     seen: local
  182.     list_match:
  183.      # TODO : DELETE
  184.       remove_on_match: false
  185.       from:
  186.         - pending_list: TV New
  187.     template:
  188.      - TV_COMMON
  189.       - DOWNLOAD
Add Comment
Please, Sign In to add comment