@anselal wrote:
Hi, I have configured flexget to download files in an incomplete folder, and then move the files to another folder, based on the Series + Season, but the move task does produces the Warning 'Task does not have any filter plugins to accept entries.'
The exact output is
2016-04-19 12:38 VERBOSE filesystem move_tvshows Starting to scan folders.
2016-04-19 12:38 VERBOSE filesystem move_tvshows Scanning folder /media/PiDrive314/torrents/incomplete. Recursion is set to True.
2016-04-19 12:38 VERBOSE details move_tvshows Produced 3 entries.
2016-04-19 12:38 WARNING task move_tvshows Task does not have any filter plugins to accept entries. You need at least one to accept the entries you want.
2016-04-19 12:38 VERBOSE details move_tvshows Summary - Accepted: 0 (Rejected: 0 Undecided: 3 Failed: 0)
2016-04-19 12:38 VERBOSE email move_tvshows No content generated from template, not sending email.I used the code from the documentation at: http://flexget.com/wiki/Plugins/move
My configuration file is (Sorry but the preformatted does not work below)`
templates:
global:
# configuration of email parameters
# -> each feed will send an email woth the accepted entries
# -> can be disabled per feed with email: active: False
email:
active: True
from: <******>
to: <******>
smtp_host: smtp.gmail.com
smtp_port: 587
smtp_login: true
smtp_username: ******
smtp_password: ******
smtp_tls: truetasks:
# SHOWRSS task
SHOWRSS:
rss: http://showrss.info/user/********.rss?magnets=true&namespaces=true&name=clean&quality=null&re=null
# fetch all the feed series
all_series: yes
# use transmission to download the torrents
transmission:
host: localhost
port: ******
username: *******
password: *******
skip_files:
- '*.nfo'
- '*.sfv'
- '[sS]ample'
- '*.txt'
# Fetch series information from thetvdb.com/
thetvdb_lookup: yes
set:
path: /media/PiDrive314/torrents/incomplete
include_files: '.*.(avi|mkv|mp4)$'
magnetization_timeout: 60
content_filename: "{{ tvdb_series_name }} - {{ tvdb_season }}x{{ tvdb_episode|pad(2) }} - {{ tvdb_ep_name|default('Missing title') }}"
interval: 1 hoursmove_tvshows:
metainfo_series: yes
require_field: series_name
filesystem:
path: /media/PiDrive314/torrents/incomplete
regexp: '.*.(avi|mkv|mp4)$'
recursive: yes
accept_all: yes
move:
to: "/media/PiDrive314/torrents/Series/{{series_name}}, Season {{series_season|pad(2)}}"
filename: "{{ tvdb_series_name }} - {{ tvdb_season }}x{{ tvdb_episode|pad(2) }} - {{ tvdb_ep_name|default('Missing title') }}"
`When I run
flexget --test execute
I get
2016-04-19 16:22 VERBOSE task move_tvshows ACCEPTED:
Houdini & Doyle - 1x04 - Spring-Heel'd Jackby accept_all plugin
Houdini & Doyle - 1x05 - The Curse of Korzha
2016-04-19 16:22 VERBOSE task move_tvshows ACCEPTED:by accept_all plugin
Houdini & Doyle - 1x06 - The Monsters of Nethermoor
2016-04-19 16:22 VERBOSE task move_tvshows ACCEPTED:by accept_all plugin
Houdini & Doyle - 1x04 - Spring-Heel'd Jack
2016-04-19 16:22 VERBOSE task move_tvshows REJECTED:by require_field plugin because required field series_name is not present
Houdini & Doyle - 1x05 - The Curse of Korzha
2016-04-19 16:22 VERBOSE task move_tvshows REJECTED:by require_field plugin because required field series_name is not present
Houdini & Doyle - 1x06 - The Monsters of Nethermoor
2016-04-19 16:22 VERBOSE task move_tvshows REJECTED:by require_field plugin because required field series_name is not present
Posts: 1
Participants: 1