Kymru

tvdb_config.yml

Dec 15th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.17 KB | None | 0 0
  1. tasks:
  2.  # downloading task
  3.   download-rss:
  4.     rss: http://showrss.info/user/**********
  5.     # fetch all the feed series
  6.     regexp:
  7.       reject:
  8.        - german
  9.         - sweden
  10.         - french
  11.         - NL
  12.     all_series: yes
  13.     # use transmission to download the torrents
  14.     transmission:
  15.       host: localhost
  16.       port: ***
  17.       username: ***
  18.       password: ***
  19.     # notify my android
  20.   # sorting task
  21.   sort-files:
  22.     filesystem:
  23.      # directory with the files to be sorted
  24.       path: /mnt/HDD/Torrents/Complete
  25.       # fetch all avi, mkv and mp4 files, skips the .part files (unfinished torrents)
  26.       regexp: '.*\.(avi|mkv|mp4)$'
  27.       recursive: yes
  28.     accept_all: yes
  29.     seen: local
  30.     # this is needed for the episode names
  31.     thetvdb_lookup: yes
  32.     all_series:
  33.      # for some reason all_series rejects all episodes here, even with seen: local, so parse_only must be added
  34.       parse_only: yes
  35.     # TVDB doesn't recognise "Adventure Time with Finn and Jake" so you must add such exceptions here manually
  36.     series:
  37.       - Agents of S.H.I.E.L.D.:
  38.           alternate_name:
  39.             - Marvel''s Agents of S.H.I.E.L.D.
  40.             - Marvels Agents of S.H.I.E.L.D.
  41.           set:
  42.             tvdb_id: 263365
  43.           parse_only: yes
  44.       - The Librarians (2014):
  45.           alternate_name:
  46.             - The Librarians
  47.             - The Librarians (US)
  48.             - The Librarians US
  49.           set:
  50.             tvdb_id: 281709
  51.           parse_only: yes
  52.       - Jessica Jones:
  53.           alternate_name:
  54.            - Marvel''s Jessica Jones
  55.             - Marvels Jessica Jones
  56.           set:
  57.             tvdb_id: 284190
  58.           parse_only: yes
  59.       - The Grand Tour (2016):
  60.           alternate_name:
  61.            - The Grand Tour
  62.           set:
  63.             tvdb_id: 314087
  64.           parse_only: yes
  65.     move:
  66.      # this is where the series will be put
  67.       to: /mnt/HDD/Videos/TV/{{ tvdb_series_name }}/Season {{ series_season }}/
  68.       # save the file as "Series Name - SxxEyy - Episode Name.ext"
  69.       rename: '{{ series_season }}x{{ series_episode|pad(2) }} - {{ tvdb_ep_name }}{{ location | pathext }}'
Add Comment
Please, Sign In to add comment