Hello guys,
I'm still new to flexget but quite impressed by a few recipes I found in the official page. However, I'm having trouble with this:
This is the recipe:
tasks: # downloading task download-rss: # RSS where everything is downloaded from: rss: http://showrss.info/user/2474.rss?magnets=false&namespaces=false&name=null&quality=null&re=null # fetch all the feed series all_series: yes # use transmission to download the torrents transmission: host: localhost port: 9091 username: transmission password: transmission path: /home/osmc/Downloads # Remove completed downloads from Transmission clean_transmission: host: localhost port: 9091 username: transmission password: transmission finished_for: 1 hours # sorting task sort-files: find: # directory with the files to be sorted path: /home/osmc/Downloads/ # fetch all avi, mkv and mp4 files, skips the .part files (unfinished torrents) regexp: '.*.(avi|mkv|mp4)$' recursive: yes accept_all: yes disable: - seen - retry_failed # this is needed for the episode names thetvdb_lookup: yes all_series: # for some reason all_series rejects all episodes here, even with seen: local, so parse_only must be added parse_only: yes # TVDB doesn't recognise "Adventure Time with Finn and Jake" so you must add such exceptions here manually series: - Adventure Time move:
It's based on a recipe in the official cookbook (http://flexget.com/wiki/Cookbook/Series/SeriesTransmissionshowRSS) But I can't seem to make it work: some problem with find? Can you guys give me a hand on this?
Thanks in advance!