Hello, i have configured this task (actually copied it from the cookbook and adjusted it to make it work):
# This task is what will actually download your shows.
# See http://flexget.com/wiki/Cookbook/Series/Search for a more detailed explanation of how this search based task works, as well as an example of how to use your `tv` template on an rss based task alongside.
get-shows:
# If this is your only task getting shows, you can just include the configure_series plugin here instead of using the template.
manual: yes
template: tv
discover:
what:
- trakt_list:
account: username
username: username
list: list-name
type: shows
strip_dates: yes
from:
- rarbg:
use_tvdb: True
category: [18, 41] # 18 are low quality releases, 41 is hd tv-shows on rarbg
this is the tv template im using:
tv:
template:
- torrent
- metainfo
- pb
set:
path: /path/to/downloads
quality: 720p-1080p
the subtemplates you see there are nothing but variable setting for transmission and pusbhbullet, metainfo is for retrieving metainfos about the episodes..
Now the output of a test run is like this:
2016-08-23 20:30 INFO manager Test mode, creating a copy from database ...
2016-08-23 20:30 INFO manager Test database created
2016-08-23 20:30 VERBOSE task_queue There are 1 tasks to execute. Shutdown will commence when they have completed.
2016-08-23 20:30 INFO transmission get-shows Trying to connect to transmission...
2016-08-23 20:30 INFO transmission get-shows Successfully connected to transmission.
2016-08-23 20:30 VERBOSE trakt_list get-shows Retrieving `shows` list `list-name`
2016-08-23 20:30 VERBOSE discover get-shows Discovering 7 titles ...
2016-08-23 20:30 INFO discover get-shows Ignoring interval because of --discover-now
2016-08-23 20:30 VERBOSE discover get-shows Searching for `Silicon Valley` with plugin `rarbg` (1 of 7)
2016-08-23 20:30 VERBOSE discover get-shows Searching for `Game of Thrones` with plugin `rarbg` (2 of 7)
2016-08-23 20:30 VERBOSE utils.requests get-shows Waiting 1.57 seconds until next request to torrentapi.org
2016-08-23 20:30 VERBOSE discover get-shows Searching for `Black Sails` with plugin `rarbg` (3 of 7)
2016-08-23 20:30 VERBOSE utils.requests get-shows Waiting 1.91 seconds until next request to torrentapi.org
2016-08-23 20:30 VERBOSE discover get-shows Searching for `Better Call Saul` with plugin `rarbg` (4 of 7)
2016-08-23 20:30 VERBOSE utils.requests get-shows Waiting 1.92 seconds until next request to torrentapi.org
2016-08-23 20:30 VERBOSE discover get-shows Searching for `The 100` with plugin `rarbg` (5 of 7)
2016-08-23 20:30 VERBOSE utils.requests get-shows Waiting 1.71 seconds until next request to torrentapi.org
2016-08-23 20:30 VERBOSE discover get-shows Searching for `Vikings` with plugin `rarbg` (6 of 7)
2016-08-23 20:30 VERBOSE utils.requests get-shows Waiting 1.93 seconds until next request to torrentapi.org
2016-08-23 20:30 VERBOSE discover get-shows Searching for `Sense8` with plugin `rarbg` (7 of 7)
2016-08-23 20:30 VERBOSE utils.requests get-shows Waiting 0.94 seconds until next request to torrentapi.org
2016-08-23 20:30 VERBOSE details get-shows Produced 175 entries.
Now the first thing I don't understand is why Silicon valley isn't getting any entry produced... (and if I search manually on rarbg.to I find it (1080p and 720p).
For reference this is what it says for game of thrones, so it is producing entries...:
2016-08-23 20:31 INFO remember_rej get-shows Remembering rejection of `Game.of.Thrones.S06E08.720p.HDTV.x264-AVS[rartv]`
2016-08-23 20:31 VERBOSE task get-shows REJECTED: `Game.of.Thrones.S06E08.720p.HDTV.x264-AVS[rartv]` by seen_info_hash plugin because entry with torrent_info_hash `18523DF9D2E670BA0BCBE074CF0510BFA08D2C59`
is already marked seen in the task showrss at 2016-06-13 04:53
2016-08-23 20:31 INFO remember_rej get-shows Remembering rejection of `Game.of.Thrones.S06E10.720p.HDTV.x264-AVS[rartv]`
2016-08-23 20:31 VERBOSE task get-shows REJECTED: `Game.of.Thrones.S06E10.720p.HDTV.x264-AVS[rartv]` by seen_info_hash plugin because entry with torrent_info_hash `77EFB1E5428E0FB17A642AB4F35D67E59E7AAE33`
is already marked seen in the task showrss at 2016-06-27 04:53
2016-08-23 20:31 INFO remember_rej get-shows Remembering rejection of `Game.of.Thrones.S06E09.720p.HDTV.x264-AVS[rartv]`
2016-08-23 20:31 VERBOSE task get-shows REJECTED: `Game.of.Thrones.S06E09.720p.HDTV.x264-AVS[rartv]` by seen_info_hash plugin because entry with torrent_info_hash `E1C20B92BCF931B6ACFADA39F3DC258EE369E735`
is already marked seen in the task showrss at 2016-06-20 04:53
The second bit is this:
2016-08-23 20:30 INFO parser_internal get-shows Title `Sense8.S01.720p.NF.WEBRip.DD5.1.x264-NTb[rartv]` looks like series `Sense8 S01 720p Nf Webrip Dd5` but cannot find a(n) `ep` style identifier.
2016-08-23 20:30 INFO parser_internal get-shows Title `Sense8.S01.1080p.NF.WEBRip.DD5.1.x264-NTb[rartv]` looks like series `Sense8 S01 1080p Nf Webrip Dd5` but cannot find a(n) `ep` style identifier.
How do I make it so that any entry found also tries to set_begin for the series?
Thank you for the help guys!