Advertisement
Guest User

Untitled

a guest
Dec 4th, 2018
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.38 KB | None | 0 0
  1. templates:
  2.   tv:
  3.     exists_series: "/home/pi/NAS/video/tvshow"
  4.     series:
  5.       - broadchurch:
  6.           begin: S01E01
  7.           quality: "<=720p"
  8.       - good doctor:
  9.           begin: S01E01
  10.           quality: "<=720p"
  11.       - manifest:
  12.           begin: S01E01
  13.           quality: "<=720p"
  14.       - young sheldon:
  15.           begin: S01E01
  16.           quality: "<=720p"
  17.       - the 100:
  18.           begin: S05E01
  19.           quality: "<=720p"
  20.       - westworld:
  21.           begin: S02E01
  22.           quality: "<=720p"
  23.     discover:
  24.       what:
  25.         - next_series_episodes:
  26.             backfill: yes
  27.       from:
  28.         - rarbg:
  29.             category: HDTV
  30.             sorted_by: seeders
  31.     transmission:
  32.       host: 192.168.0.50
  33.       port: 9091
  34.       username: ...
  35.       password: ...
  36.  
  37. tasks:
  38.   showrss-feed:
  39.     rss: https://showrss.info/other/shows.rss
  40.     template: tv
  41.     headers:
  42.       User-Agent: "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0"
  43.     cfscraper: yes
  44.  
  45.   eztz-feed:
  46.     rss: https://eztv.ag/ezrss.xml
  47.     template: tv
  48.     headers:
  49.       User-Agent: "Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0"
  50.     cfscraper: yes
  51.  
  52.   move-episodes:
  53.     metainfo_series: yes
  54.     accept_all: yes
  55.     require_field: series_name
  56.     filesystem:
  57.       path: /home/pi/NAS/video/complete
  58.       recursive: yes
  59.     move:
  60.       to: "/home/pi/NAS/video/tvshow/{{ series_name }}/S0{{series_season}}/"
  61.       rename: "{{ series_id }} - {{ series_episode }} {{ location|pathext }}"
  62.       clean_source: 100
  63.       along:
  64.         extensions:
  65.          - sub
  66.           - srt
  67.         subdirs:
  68.          - Subs
  69.     list_add:
  70.       - subtitle_list:
  71.           list: subtitles
  72.           languages:
  73.            - en
  74.  
  75.   get_subs:
  76.     no_entries_ok: yes
  77.     subtitle_list:
  78.       list: subtitles
  79.       recursion_depth: 3
  80.     list_match:
  81.       from:
  82.         - subtitle_list:
  83.             list: subtitles
  84.     subliminal:
  85.       languages: # languages is required, but if a language is specified in subtitle_list, it takes priority
  86.         - en
  87.       providers:
  88.        - opensubtitles
  89.         - podnapisi
  90.         - tvsubtitles
  91.       single: no  # will append the language code to the subtitle file
  92.       exact_match: no
  93.       authentication:
  94.         opensubtitles:
  95.           username: "..."
  96.           password: ".."
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement