Quantcast
Channel: configuration - Forum - FlexGet
Viewing all 716 articles
Browse latest View live

Torrents Added To Web Version Of Tranmission

$
0
0

@Mike_Jones wrote:

I am migrating flexget to a new PC and attempting to set everything up again. I have worked all the errors out of my config, have everything set-up but now when I run my flexget execute the files are not added to the Transmission on my Ubuntu VM they are added to the web http://localhost:9091/transmission/web/#confirm - what setting do I change so that files are downloaded or show up in the Transmisson on my Ubuntu VM?

Posts: 1

Participants: 1

Read full topic


imdb_lookup and tvdb_lookup language

$
0
0

@alvaro wrote:

Hi,

For those interested in getting the movie or series information (mainly the title, the score and the number of votes) from imdb or tvdb in a language different than english, I've found where to modify the python code to make it possible. I am not good at python programming, but it would be great that those plugins could be configured to get the information in a desired language (so you can correctly parse a rss input for spanish movies or series, for instance, and then match it with your trakt.tv lists).

The problem with this modification is that you have to re-modify the files when you upgrade flexget. But it is a solution that some of you may find interesting while the plugins become more versatile.

These are the files to modify and where to make the modifications to get the information in spanish (changes are marked in bold)

  • imdb.py >>> sudo nano /usr/local/lib/python2.7/dist-packages/flexget/utils/imdb.py
    Line 25:
    requests.headers.update({'Accept-Language': 'es-ES,es;q=0.8'})
    Line 314:
    self.votes = str_to_int(votes_elem.text.replace('.', ','))
    Line 320:
    self.score = float(score_elem.text.replace(',', '.'))

  • api_tvdb.py >>> sudo nano /usr/local/lib/python2.7/dist-packages/flexget/plugins/internal/api_tvdb.py
    Line 61:
    language = params.pop('language', 'es')
    Line 178:
    self.language = language or 'es'

  • tvdb_lookup.py >>> sudo nano /usr/local/lib/python2.7/dist-packages/flexget/api/plugins/tvdb_lookup.py
    Line 91:
    base_parser.add_argument('language', default='es', help='Language abbreviation string for different language support')

  • thetvdb_lookup.py >>> sudo nano /usr/local/lib/python2.7/dist-packages/flexget/plugins/metainfo/thetvdb_lookup.py
    Line 106:
    'language': {'type': 'string', 'default': 'es'}
    Line 169:
    language = config['language'] if not isinstance(config, bool) else 'es'

Some of the changes may be unnecessary but it works. If this could be made by plugin settings, it would not be necessary to change manually those files any time flexget is upgraded. I would be really grateful that it could be implemented as a new feature request. Could that be possible?

Thanks!

Posts: 3

Participants: 2

Read full topic

content_filter forgets

$
0
0

@paegus wrote:

I have set up content_filter to filter out .rar files. But every time it runs it's rejecting the exact same entry because content_filter *.rar

It says 'Remembering rejection of...' each time.

2018-04-18 18:58 VERBOSE  content_size  task1      Entry `The Silly Show S03E15 480p x264-mSD` too small, rejecting
2018-04-18 18:58 VERBOSE  task          task1      REJECTED: `The Silly Show S03E15 480p x264-mSD` by content_size plugin because minimum size 100 MB, got 95 MB
2018-04-18 18:58 VERBOSE  task          task1      ACCEPTED: `The Silly Show S03E15 1080p WEB x264-TBS` by series plugin because choosing best available quality
2018-04-18 18:58 INFO     download      task1      Downloading: The Silly Show S03E15 1080p WEB x264-TBS
2018-04-18 18:58 VERBOSE  details       task1      Summary - Accepted: 1 (Rejected: 1 Undecided: 7 Failed: 0)
2018-04-18 18:58 INFO     content_filter task1      Entry The Silly Show S03E15 1080p WEB x264-TBS has banned file *.rar, rejecting
2018-04-18 18:58 INFO     remember_rej  task1      Remembering rejection of `The Silly Show S03E15 1080p WEB x264-TBS`
2018-04-18 18:58 VERBOSE  task          task1      REJECTED: `The Silly Show S03E15 1080p WEB x264-TBS` by content_filter plugin because has banned file *.rar
2018-04-18 18:58 INFO     task          task1      Rerunning the task in case better resolution can be achieved.
2018-04-18 18:58 VERBOSE  discover      task1      Discovering 46 titles ...
2018-04-18 18:58 INFO     discover      task1      Ignoring interval because of --discover-now
2018-04-18 18:58 VERBOSE  details       task1      Task didn't produce any entries.
2018-04-18 18:58 VERBOSE  details       task1      Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

Posts: 1

Participants: 1

Read full topic

How to match a series without episode numbering, date or numbered id?

$
0
0

@eivindml wrote:

I have a series named like this: Trygdekontoret.Dokumentar.På.Paradise.Hotell.NORWEGiAN.720p.WEB-DL.x264-PirateTV

How can I match this using the series plugin?

I tried using id_regexp and name_regexp, but didn't quite know how to get it work.

"Trygdekontoret.Dokumentar" is the fixed part (series name), and "På.Paradise.Hotell" is the episode title.

H ave tried this:

- Trygdekontoret Dokumentar:
    identified_by: id
    name_regexp: ^trygdekontoret.dokumentar
    id_regexp: .*

Posts: 4

Participants: 2

Read full topic

Call python script

$
0
0

@ddgames wrote:

How would one call a python script once a new torrent is detected?

Would using

exec: python script.py

work?

thanks

Posts: 2

Participants: 2

Read full topic

Url link filter

$
0
0

@karmon11 wrote:

what I have to do that rss http://2ddl.io/feed/ he accepted only rapidgator link?

my config:

tasks:
  task_name:
    rss: http://2ddl.io/feed/
    series:
      - xxxxxxxxx
   quality: 720p+ webdl
    exec:
      - echo text={{url}} >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo downloadFolder=/media/pi/ex32 >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo autoConfirm=TRUE >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo autoStart=TRUE >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo extractAfterDownload=FALSE >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      ##if you also need to parse the content of the url, uncomment following line
      #- echo deepAnalyseEnabled=true >> "/media/pi/plat16/folderwatch/mylist.crawljob"

Posts: 1

Participants: 1

Read full topic

Illogical Behavior

$
0
0

@gsapient wrote:

Hello.
I have the following line in my config:

if: ["'CONVERT' in title or 'convert' in title": reject]

Now, if , for example, in my RSS feed there are 2 instances of an episode of series "test" like this:

test.s01e03.720p.hdtv
test.s01e03.CONVERT.720p.web

The result is that flexget downloads neither! It selects the CONVERT.720p.web as the best quality to download then rejects it because of CONVERT in title.
Shouldn't it fall back to the other release then?
Or never select the CONVERT one?
Can this be fixed?
And in the meantime, is there a way to bypass this issue? Force the order of evaluation?

Posts: 2

Participants: 2

Read full topic

filehosters_re

$
0
0

@karmon11 wrote:

this is my config:

is ok, but filehosters_re not working for rlsbb.ru gives me link uploadgig but i want rapidgator. for rmz works. i dont know what is wrong.

templates:
  tv:
    inputs:
        - rss: http://rmz.cr/feed
        - rss: http://rlsbb.ru/feed/
    accept_all: no
    rmz:
      filehosters_re:
      - uploaded\.net
    rlsbb:
      filehosters_re:
      - rapidgator\.net
    exec:
      - echo text={{url}} >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo downloadFolder=/media/pi/ex32 >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo autoConfirm=TRUE >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo autoStart=TRUE >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      - echo extractAfterDownload=FALSE >> "/media/pi/plat16/folderwatch/mylist.crawljob"
      ##if you also need to parse the content of the url, uncomment following line
      #- echo deepAnalyseEnabled=true >> "/media/pi/plat16/folderwatch/mylist.crawljob"
    series:
        720p+ webdl|webrip h264:
            - test
tasks:
  Series:
    template: tv
    notify:
      task:
#        template: html  # Optional, if you want html instead of plain text
        via:
        - email:
            from: xxxxx
            to: xxxxx
            smtp_host: smtp.gmail.com
            smtp_port: 587
            smtp_username: xxxxx
            smtp_password: xxxxx
            smtp_tls: yes
            html: yes

Posts: 1

Participants: 1

Read full topic


List indices Error with sonarr_list plugin

$
0
0

@Pr0curia wrote:

Dear forum members,

I got totally stuck with my Trakt to sonarr config.

I copied the config from : https://github.com/rinslee/flexget-config-sonarr/blob/master/config.yml

It always crashes in the series_unseen part with the error " series_unseen BUG: Unhandled error in plugin list_add: list indices must be integers, not unicode "
The only clue to solve this error I found was: https://discuss.flexget.com/t/sonarr-couchpotato-integration/1289/18
But the solution "try for show in json" puzzles me. I don't know what's ment and they didn't elaborate that further.

Is someone out there with the same problem - or even a solution for this?

Please see below the part of the conf, which causes the problem.

Many thanks in advance,

Peter

series_unseen:
    priority: 3
    disable:
      - seen
      - seen_info_hash
      - retry_failed
    trakt_lookup:
      account: procuria
      username: Procuria
    trakt_list:
      account: procuria
      list: serien
      type: shows
    if:
      - trakt_watched: reject
    accept_all: yes
    list_add:
      - sonarr_list:
          base_url: http://localhost
          port: 8989
          api_key: MyApiKey
          ignore_episodes_with_files: yes
          root_folder_path: /home/Deluge/TV 
          search_missing_episodes: yes

Posts: 2

Participants: 2

Read full topic

Conditional statements and seeding time/ratio

$
0
0

@Germanicus wrote:

Could someone point me in the right direction on how to remove a torrent after either the seed ratio is met or seeding time. I'm not sure whether there are conditional statements available or how to use them.

Posts: 4

Participants: 2

Read full topic

Imdb movies not accepted anymore

$
0
0

@taw3434 wrote:

hey long time flexget user -- so long im probably many versions behind the current. Anyway i just noticed that movies for me were not being accepted anymore did a --dump and everything was undecided but couldn't see why. thought i could post my config and see if anyone could help. Thanks

schedules:
  # Run task_a every 30 minutes
  - tasks: xspeedstv
    interval:
      minutes: 15
  - tasks: updatewatchlist
    interval:
      hours: 24
  - tasks: xspeedsmovie
    interval:
      hours: 3
  - tasks: checkmanadd
    interval:
      minutes: 60
templates:
  movie:
    movie_queue: accept
    imdb_lookup: yes
    quality: 720p
    regexp:
      reject:
        - HC
    deluge:
      host: localhost
      port: 58846
      password: ********
      content_filename: "{{imdb_name}}"
      path: ~/Downloads/
      main_file_only: yes
      movedone: /storage/Movies/{{imdb_name}} ({{imdb_year}})/
      ratio: 2
      removeatratio: yes
      keep_subs: yes
  tv:
    thetvdb_lookup: yes
    exists_series:
      - '/storage/TV/{{tvdb_series_name}}/Season {{tvdb_season}}'
      - '/storage/TV/{{tvdb_series_name}}/Season{{tvdb_season}}'
      - ~/Downloads
    configure_series:
      from:
        thetvdb_favorites:
          account_id: ************
      settings:
        propers: 2 days
        timeframe: 12 hours
        target: 720p
        quality: "<=720p"
    set:
      content_filename: "{{tvdb_series_name}} - {{tvdb_ep_id}} - {{tvdb_ep_name$
      path: ~/Downloads/
      movedone: /storage/TV/{{tvdb_series_name}}/Season {{tvdb_season}}/
      ratio: 2
      removeatratio: yes
      main_file_only: yes
      keep_subs: yes
    deluge:
      host: localhost
      port: 58846
      password: **********
    series:
      - Divorce (2016):
          alternate_name: Divorce US
      - Scandal (2012):
          alternate_name: Scandal US
      - Taboo (2017):
          alternate_name: Taboo UK
      - Crashing (2017):
          alternate_name: Crashing US
tasks:
  manupdatedb:
    filesystem:
      regexp: .*(avi|mkv|mp4)$
      path: /storage/TV/
      recursive: yes
      retrieve: files
    template: tv                            
    manual: yes
  xspeedstv:
    rss: https://www.xspeeds.eu/rss.php?secret_key=*********
    template: tv
  xspeedsmovie:
    rss: https://www.xspeeds.eu/rss.php?secret_key=**********
    template: movie
  updatewatchlist:
    priority: 1
    imdb_list:
      list: watchlist
      user_id: ***********
    accept_all: yes
    movie_queue:
      action: add
  checkmanadd:
    seen: local
    thetvdb_lookup: yes
    inputs:
      - from_deluge:
          config_path: "/home/taw34/.config/deluge/"
          filter:
            state: downloading
      - from_deluge:
          config_path: "/home/taw34/.config/deluge/"
          filter:
            state: queued
      - from_deluge:
          config_path: "/home/taw34/.config/deluge/"
          filter:
            state: seeding
    all_series: yes
    deluge:
      host: localhost
      port: 58846
      password: ************
      main_file_only: yes
      content_filename: "{{tvdb_series_name}} - {{tvdb_ep_id}} - {{tvdb_ep_name$
      movedone: /storage/TV/{{tvdb_series_name}}/Season {{tvdb_season}}/`

Posts: 1

Participants: 1

Read full topic

Using notify to push webhooks

$
0
0

@2000b5 wrote:

I don't need it to push into slack or Ms teams but I would like to use webhooks, is there another notify option?

Posts: 1

Participants: 1

Read full topic

Can't produce entries with configure_series

$
0
0

@stefano.comba wrote:

Hi,
I can't understand what I'm missing or I have to change in my config file. I'm using configure_series as the input of my task (documentation https://flexget.com/Plugins/configure_series) but I receive this error that says the opposite:

8-05-12 15:09 VERBOSE task_queue There are 1 tasks to execute. Shutdown will commence when they have completed.
2018-05-12 15:09 VERBOSE trakt_list download-shows Retrieving shows list following
2018-05-12 15:09 WARNING task download-shows Task doesn't have any input plugins, you should add (at least) one!
2018-05-12 15:09 WARNING details download-shows Task didn't produce any entries. This is likely due to a mis-configured or non-functional input.
2018-05-12 15:09 VERBOSE details download-shows Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

templates:
  torrent:
    transmission:
      host: localhost
      port: 9091
      username: '{? credentials.transmission.username ?}'
      password: '{? credentials.transmission.password ?}'
      addpaused: no
  shows:
    configure_series:
      settings:
        quality: 720p
      from:
        trakt_list:
          username: '{? credentials.trakttv.username ?}'
          account: '{? credentials.trakttv.username ?}' # required if list is not public
          list: following
          type: shows
    transmission:
      path: '{? paths.tvseries ?}'
tasks:
  download-shows:
    all_series: yes
    template:
      - torrent
      - shows
    notify:
      entries:
        what: accepted
        via:
        - telegram:
            bot_token: '{? credentials.telegram.bot_token ?}'
            parse_mode: markdown
            recipients:
              - username: '{? credentials.telegram.username ?}'

Posts: 1

Participants: 1

Read full topic

[question]If plugin with manipulate plugin

$
0
0

@tmknight wrote:

Hi:

Trying to manipulate titles based on description. However, once the string is found in if statement, then all torrent titles are getting renamed. Any thoughts?

Example:

    if:
      ## Add 720p to title of only torrents that have 720p dimension in description
      - "'1280x720' in description":
          manipulate:
            - title:
                replace:            
                  regexp: '(?i)Stage\b'
                  format: '720p - Stage'
      ## Add 576p to title of only torrents that have 576p dimension in description
      - "'720x576' in description":
          manipulate:
            - title:
                replace:            
                  regexp: '(?i)Stage\b'
                  format: '576p - Stage'

Thanks for any insight

Posts: 1

Participants: 1

Read full topic

HELP -- Series with trakt

$
0
0

@infadown wrote:

Hello , i am a little noob here,
I am about more that a week tryng to use flexget to download series from my trakt list but can,
I did my code and only downloads movies i used a friend code and nothing anybody whit a easy config and a good explained one só i can use to try it out?

Thanks

Posts: 1

Participants: 1

Read full topic


Season packs not downloading on setting "always"

$
0
0

@7thSon wrote:

I'm trying to get flexget to download each episode while a show season is running, and when the tracker releases a season pack I want to download that too, and then manually (I guess) delete the individual episodes. The problem I'm having though is that I have season packs in my RSS feed, but they're being rejected "by exists_series plugin because proper already exists.". My config is as below.

I thought that the setting "season_packs: always" should override and force download of season packs? But it doesn't seem to do it, I'm guessing it's because I already have all the individual episodes? I can't put the same series in the tvEpisodes list and the tvSeasons, do I have to make another task for this to work, or am I missing a setting?

schedules:
  - tasks: tvseries
    interval:
      minutes: 30
templates:
  torrent:
    transmission:
      host: localhost
      port: 9091
      username: xxx
      password: yyy
      ratio: -1.0
      addpaused: no
  tv:
    template: torrent
    series:
      settings:
        tvEpisodes:
      specials: yes
      season_packs: always
      path: '/volume1/TV Shows/Seed/{{ tvdb_series_name }}/{{ tvdb_series_name }} S{{ tvdb_season|pad(2) }}'

    tvSeasons:
      season_packs: only
      path: '/volume1/TV Shows/Seed/{{ tvdb_series_name }}/'

  tvEpisodes:
    - Show A
  tvSeasons:
    - Show B
tasks:
  tvseries:
    template: tv
    rss:
      url: www
      all_entries: no
      ascii: yes
    thetvdb_lookup: yes
    seen: local
    verify_ssl_certificates: no
    exists_series: '/volume1/TV Shows/Seed/{{ tvdb_series_name }}/'
    no_entries_ok: yes

Posts: 1

Participants: 1

Read full topic

All results from discover are undecided

$
0
0

@Tweek wrote:

I am trying to set up Flexget with input from IMDB and Trakt watchlists. The task movie-queue should fetch these lists and put the results in the movie_list watchlists. To speed up testing I removed the IMDB plugin from the task.

The task seems to fetch the movies properly but all results come back as undecided and the get_movies task says that the movie_list input did not return anything. This is my config:

templates:
  transmissionrpc:
    transmission:
      host: localhost
      port: 9091
      username: tweek
      password: ******
      addpaused: no
      ratio: 2
      main_file_only: yes
      include_subs: yes

tasks:
## Read watchlists from Trakt and IMDB
  movie-queue:
    priority: 10
    trakt_list:
      username: XXXXX
      account: XXXXX
      list: movies
      type: movies
    exists_movie:
      path: /media/HDD/Films
      allow_different_qualities: no
      lookup: imdb
      recursion_depth: 2
    imdb_lookup: yes
    seen: local  
    list_add:
      - movie_list: watchlists
## Read internal watchlist, fetch torrents and pass to Transmission
  get_movies:
    priority: 20
    template: transmissionrpc
    content_size:
      min: 700
      max: 15000
      strict: no
    quality: dvdrip+ # Make sure no screeners or cams are downloaded
    torrent_alive: 2
    discover:
      what:
        - movie_list: watchlists
      from:
        - limetorrents:
            category: movies
        - rarbg: 
            category:
              - x264 720p
              - x264 1080p
        - newtorrents: yes
        - 1337x: yes
        - search_rss: https://zooqle.com/search?q=\{{search-term}}&fmt=rss
      interval: 7 days
      release_estimations: strict
    list_match:
      from:
        - movie_list: watchlists

Output from the debug commands:

pi@raspberrypi:~/tools/flexget $flexget execute --tasks movie-queue --dump
2018-05-19 13:03 VERBOSE  trakt_list    movie-queue     Retrieving `movies` list `movies`
2018-05-19 13:03 VERBOSE  details       movie-queue     Produced 18 entries.
2018-05-19 13:03 VERBOSE  details       movie-queue     Summary - Accepted: 0 (Rejected: 0 Undecided: 18 Failed: 0)
[...]
title            : Valerian and the City of a Thousand Planets (2017)
url              : https://trakt.tv/movies/valerian-and-the-city-of-a-thousand-planets-2017
original_url     : https://trakt.tv/movies/valerian-and-the-city-of-a-thousand-planets-2017
imdb_actors      : <LazyField - value will be determined when it is accessed>
imdb_directors   : <LazyField - value will be determined when it is accessed>
imdb_genres      : <LazyField - value will be determined when it is accessed>
imdb_id          : tt2239822
imdb_languages   : <LazyField - value will be determined when it is accessed>
imdb_mpaa_rating : <LazyField - value will be determined when it is accessed>
imdb_name        : <LazyField - value will be determined when it is accessed>
imdb_original_name: <LazyField - value will be determined when it is accessed>
imdb_photo       : <LazyField - value will be determined when it is accessed>
imdb_plot_outline: <LazyField - value will be determined when it is accessed>
imdb_score       : <LazyField - value will be determined when it is accessed>
imdb_url         : <LazyField - value will be determined when it is accessed>
imdb_votes       : <LazyField - value will be determined when it is accessed>
imdb_writers     : <LazyField - value will be determined when it is accessed>
imdb_year        : <LazyField - value will be determined when it is accessed>
movie_name       : Valerian and the City of a Thousand Planets
movie_year       : 2017
quality          : <LazyField - value will be determined when it is accessed>
task             : movie-queue
tmdb_id          : 339964
trakt_movie_id   : 220423
trakt_movie_name : Valerian and the City of a Thousand Planets
trakt_movie_slug : valerian-and-the-city-of-a-thousand-planets-2017
trakt_movie_year : 2017

pi@raspberrypi:~/tools/flexget $ flexget movie-list list watchlists

l0 Movies in movie list: `watchlists`qqqwqqqqqqqqqqqqqqqqwqqqqqqqqqqqwqqqqqqqwqqqqqqqqqk
x # x Movie Name x Movie year x tmdb_id x trakt_movie_id x bluray_id x rt_id x imdb_id x
mqqqvqqqqqqqqqqqqvqqqqqqqqqqqqvqqqqqqqqqvqqqqqqqqqqqqqqqqvqqqqqqqqqqqvqqqqqqqvqqqqqqqqqj

2018-05-19 13:04 VERBOSE  task_queue                    There are 1 tasks to execute. Shutdown will commence when they have completed.
2018-05-19 13:04 WARNING  utils                         Input movie_list did not return anything
2018-05-19 13:04 VERBOSE  discover      get_movies      Discovering 0 titles ...
2018-05-19 13:04 VERBOSE  details       get_movies      Task didn't produce any entries.
2018-05-19 13:04 VERBOSE  details       get_movies      Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

I looked at a few other topics about undecided results like https://discuss.flexget.com/t/getting-all-my-results-as-undecided/2234/7 and https://discuss.flexget.com/t/undecided-wont-accept/2312 but the solutions do not fix my problem. It does seem to indicate however that my problem is somewhere in the movie-queue function.

Posts: 3

Participants: 2

Read full topic

Mtv plugin not recognized

$
0
0

@rcnorth wrote:

Is the mtv plugin no longer supported?

I used the information on the plugin found here, but when I run a check on my config file I am an error of "Only known plugin names are valid keys"

Posts: 1

Participants: 1

Read full topic

Proper episodes not downloaded

$
0
0

@Lukeid wrote:

Hello,

I notice that "proper" episodes are not downloaded, although they are marked as proper in the task (proper=1).
They are rejected as seen.

2018-06-09 10:02 DEBUG    parser_internal  dw   Parsing series: `Lucifer (Proper)  3x26 HDTV` kwargs: {'identified_by': u'ep', u'date_regexps': [], 'strict_name': False, 'name': u'Lucifer', 'prefer_specials': None, 'special_ids': [], 'alternate_names': [], u'sequence_regexps': [], 'date_dayfirst': None, u'id_regexps': [], 'assume_special': None, 'name_regexps': [], 'date_yearfirst': None, 'allow_groups': [], u'ep_regexps': []}
2018-06-09 10:02 DEBUG    parser_internal  dw   Parsing result: <SeriesParser(data=Lucifer (Proper)  3x26 HDTV,name=Lucifer,id=(3, 26),season=3,season_pack=None,episode=26,quality=hdtv,proper=1,status=OK)> (in 4.90600000001 ms)
2018-06-09 10:02 DEBUG    series           dw   `Lucifer (Proper)  3x26 HDTV` detected as `<SeriesParseResult(data=Lucifer (Proper)  3x26 HDTV,name=Lucifer,id=(3, 26),season=3,season_pack=None,episode=26,quality=hdtv,proper=1,special=False,status=OK)>`, field: `title`
2018-06-09 10:02 TRACE    metainfo_quality dw   Found quality hdtv for Lucifer (Proper)  3x26 HDTV
2018-06-09 10:02 TRACE    seen             dw   querying for: Lucifer (Proper)  3x26 HDTV, http://dw.com/lucifer/s-3/ep-26/
2018-06-09 10:02 DEBUG    seen             dw   Rejecting 'http://dw.com/lucifer/s-3/ep-26/' 'Lucifer (Proper)  3x26 HDTV' because of seen 'http://dw.com/lucifer/s-3/ep-26/'
2018-06-09 10:02 VERBOSE  task             dw   REJECTED: `Lucifer (Proper)  3x26 HDTV` by seen plugin because entry with original_url `http://dw.com/lucifer/s-3/ep-26/` is already marked seen in the task dw at 2018-06-08 18:20

Is there any way to force Proper episodes to be redownloaded?

Reading Flexget documentation it is supposed to be done by default, and I don't have any "propers" plugin specific configuration.

Thank you in advance.
Lukeid

Posts: 5

Participants: 3

Read full topic

Move to Archive Files tasks

Viewing all 716 articles
Browse latest View live