-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
109 lines (92 loc) · 2.73 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
presets:
# Applies to all sections
global:
# Files we're not interested in
content_filter:
# RAR is not an appropriate file format for BitTorrent
reject: "*.rar"
# If the decision is made to download, apply these settings
downloader:
# Send to Transmission
transmission:
netrc: /root/.netrc
path: @DOWNLOADS_ROOT@
# Remove Transmission entries when 'done'
removewhendone: yes
# Ensure Mac friendly filenames/paths
# 'pathscrub' not yet available??
#pathscrub: mac
# Use the Notify My Android API on new downloads
notifymyandroid:
apikey: @NMA_API_KEY@
# TV shows
tv:
# Check if the TV show already exists locally
exists_series: @DOWNLOADS_ROOT@/_TV
# Fetch show details from The TV DB
# and set the path and filename to something
# appropriate
thetvdb_lookup: yes
set:
content_filename: "{{ series_id }} - {{ ep_name|default('Unnamed')|replace(':', ' -') }} - {{ quality|upper }}"
path: "@DOWNLOADS_ROOT@/_TV/{{ series_name|replace(':',' -') }}/Season {{ series_season }}/"
# Import TV series to download from thetvdb.com
import_series:
from:
thetvdb_favorites:
account_id: @TVDB_ID@
strip_dates: yes
# Movies
movies:
# Check if the movie already exists locally
exists_movie: @DOWNLOADS_ROOT@/_Movies
seen_movies: loose
# Set the download path for movies
set:
path: @DOWNLOADS_ROOT@/_Movies
# Set quality: only DVDRip or better and only up-to 720p
# (1080p pushes the 2008 MacMini a bit too hard)
quality: dvdrip-bluray <=720p
# Apply to the movie queue
movie_queue: yes
# Go out into the world and find torrents
# for movies in the queue
discover:
what:
- emit_movie_queue: yes
from:
- torrentz
type: movies
# Don't download movies already rated
# (i.e. already seen)
crossmatch:
from:
- imdb_list:
list: ratings
user_id: @IMDB_ID@
fields:
- imdb_id
action: reject
# Feeds
feeds:
# Fetch titles from an IMDB watchlist and build the movie queue
IMDB-Watchlist:
imdb_list:
list: watchlist
user_id: @IMDB_ID@
accept_all: yes
# Add to the movie queue
queue_movies: yes
# Newly available Movies feed
Torrentz-Movies:
rss: http://torrentz.eu/feed_verified?q=movies
imdb_lookup: yes
preset:
- movies
- downloader
# Newly available TV shows feed
Torrentz-TV:
rss: http://torrentz.eu/feed_verified?q=tv
preset:
- tv
- downloader