Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. tasks:
  2. # downloading task
  3. download-rss:
  4. rss: YOURFEEDHERE
  5. # fetch all the feed series
  6. all_series:
  7. upgrade: yes
  8. quality: 720p hdtv+
  9. exists_series:
  10. - '/mnt/9EB1-8C54/downloading'
  11. - '/mnt/9EB1-8C54/completed'
  12. # use deluge to download the torrents
  13. deluge: yes
  14. notify:
  15. task:
  16. template: html # Optional, if you want html instead of plain text
  17. via:
  18. - email:
  19. from: from@gmail.com
  20. to: to@gmail.com
  21. smtp_host: smtp.gmail.com
  22. smtp_port: 587
  23. smtp_username: USERNAME
  24. smtp_password: PASSWORD
  25. smtp_tls: yes
  26. html: yes # To parse template as HTML
  27. # sorting task
  28. sort-series:
  29. filesystem:
  30. # directory with the files to be sorted
  31. path: /mnt/9EB1-8C54/completed
  32. # fetch all avi, mkv and mp4 files, skips the .part files (unfinished torrents)
  33. regexp: '.*\.(avi|mkv|mp4)$'
  34. recursive: yes
  35. accept_all: yes
  36. seen: local
  37. # this is needed for the episode names
  38. thetvdb_lookup: yes
  39. all_series:
  40. # for some reason all_series rejects all episodes here, even with seen: local, so parse_only must be added
  41. parse_only: yes
  42. # TVDB doesn't recognise "Adventure Time with Finn and Jake" so you must add such exceptions here manually
  43. series:
  44. - Adventure Time
  45. move:
  46. # this is where the series will be put
  47. to: /mnt/9EB1-8C54/Series/{{ tvdb_series_name }}/Season {{series_season|pad(2)}}
  48. # save the file as "Series Name - SxxEyy - Episode Name.ext"
  49. rename: '{{ tvdb_series_name }} - {{ series_id }} - {{ tvdb_ep_name }}{{ location | pathext }}'
  50. along:
  51. extensions:
  52. - sub
  53. - srt
  54. subdirs:
  55. - Subs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement