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

Parentheses causing parsing failure?

$
0
0

@meeotch wrote:

Here's a simple test config, which I'd hope would keep updating the series episodes in the case where an x265 source becomes available after an h264.

templates:
  all:
    headers:
      User-Agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36"
      Referer: "http://torrentproject.se/"
      Accept-Encoding: "deflate, gzip"
#    verify_ssl_certificates: no

tasks:
  the_mick:
    rss:
      url: https://www.limetorrents.cc/searchrss/the%20mick
    series:
      - the mick:
          begin: "S02E01"
          timeframe: 48 hours
          target: 1080p webdl+ 10bit+
          quality: 720p+
          upgrade: yes
    template: all

I've removed the "deluge" section that actually downloads the torrent, since it contains private info. This series has just one episode in season 02 so far. flexget successfully grabbed a 1080p x264 entry - it's the first REJECTED one in the output below (already downloaded). But it subsequently REJECTED a 1080p x265 10bit entry that's clearly better quality, saying that it's worse quality.

My gut says that the problem must be that flexget isn't parsing the quality info from this particular entry, though I'm not sure. It looks properly labeled to me - the only weird thing is the parentheses. Is there a way to work further debug and hopefully work around this sort of thing?

2017-09-30 23:18 VERBOSE  task_queue                    There are 1 tasks to execute. Shutdown will commence when they have completed.
2017-09-30 23:18 VERBOSE  details       the_mick        Produced 50 entries.
2017-09-30 23:18 VERBOSE  parser_internal the_mick        Title `The Mick S01 WEB-DLRip` looks like series `the mick` but cannot find a(n) `ep` style identifier.
2017-09-30 23:18 VERBOSE  parser_internal the_mick        Title `The Mick Ronson Memorial Concert 2 CD 2001` looks like series `the mick` but cannot find a(n) `ep` style identifier.
2017-09-30 23:18 VERBOSE  task          the_mick        REJECTED: `The Mick S02E01 1080p WEB x264-TBS[rarbg]` by seen plugin because entry with title `The Mick S02E01 1080p WEB x264-TBS[rarbg]` is already marked seen in the task the_mick at 2017-09-30 00:10

<snip>

2017-09-30 23:18 VERBOSE  task          the_mick        REJECTED: `The Mick (2017) S02E01 (1080p WEBRip x265 HEVC 10bit AAC 5 1 Langbard) [UTR]` by series plugin because worse quality than already downloaded.

<snip>

Posts: 6

Participants: 2

Read full topic


[Solved]imdb_lookup - require_field plugin because required field movie_name is `None`

$
0
0

@tomatosmoothie wrote:

Pl. help!

imdb_lookup - require_field plugin because required field movie_name is None

tasks:
  sorttv:
    priority: 2
    no_entries_ok: yes
    filesystem:
      path: 'E:\Downloads\temp\tvshows'
      regexp: '.*\.(avi|mkv|mp4)$'
      recursive: yes
    accept_all: yes
    thetvdb_lookup: yes
    require_field: series_name
    all_series:
      parse_only: yes
    move:
      to: 'E:\Documents\ToConvert'
      rename: "{{series_name|replace(' ', '.')}}.{{series_id}}{{location|pathext}}"
      clean_source: 50

  sortoth:
    priority: 4
    no_entries_ok: yes
    filesystem:
      path: 'E:\Downloads\temp\others'
      regexp: '.*\.(avi|mkv|mp4|wmv)$'
      recursive: yes
    accept_all: yes
    move:
      to: 'E:\Documents\ToConvert'
      clean_source: 50

  sortmov:
    priority: 3
    no_entries_ok: yes
    filesystem:
      path: 'E:\Downloads\temp\movies'
      regexp: '.*\.(avi|mkv|mp4)$'
      recursive: yes
    accept_all: yes
    imdb_lookup: yes
    regexp:
      reject:
        - sample
        - trailer
    proper_movies: yes
    require_field: [movie_name, movie_year]
    move:
      to: 'E:\Documents\ToConvert'
      rename: "{{ movie_name }} ({{movie_year}}){{location|pathext}}"
      clean_source: 600

  download:
    priority: 1
    rss: 'http://showrss.info/user/yo.rss?magnets=true&namespaces=true&name=null&quality=null&re=null'
    all_series: yes
    deluge:
      path: 'E:\Downloads\temp'
      label: tvshows
    notify:
      entries:
        title: Downloading {{series_name}}
        message: Episode {{series_id}}
        via:
          - pushbullet:
              api_key: o.hoZsEDnF2EVBYoMaMa

2017-10-02 09:14 VERBOSE  details       download        Summary - Accepted: 0 (Rejected: 9 Undecided: 0 Failed: 0)
2017-10-02 09:14 VERBOSE  filesystem    sorttv          Starting to scan folders.
2017-10-02 09:14 VERBOSE  filesystem    sorttv          Scanning folder E:\Downloads\temp\tvshows. Recursion is set to True.
2017-10-02 09:14 VERBOSE  details       sorttv          Task didn't produce any entries.
2017-10-02 09:14 VERBOSE  details       sorttv          Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)
2017-10-02 09:14 VERBOSE  filesystem    sortmov         Starting to scan folders.
2017-10-02 09:14 VERBOSE  filesystem    sortmov         Scanning folder E:\Downloads\temp\movies. Recursion is set to True.
2017-10-02 09:14 VERBOSE  details       sortmov         Produced 2 entries.
2017-10-02 09:14 VERBOSE  task          sortmov         ACCEPTED: `Baby.Driver.2017.1080p.WEB-DL.H264.AC3-EVO` by accept_all plugin
2017-10-02 09:14 VERBOSE  task          sortmov         ACCEPTED: `The.Power.of.Few.2013.1080p.BluRay.x264.YIFY` by accept_all plugin
2017-10-02 09:14 VERBOSE  imdb_lookup   sortmov         Imdb lookup failed for baby.driver.2017.1080p.web-dl.h264.ac3-evo
2017-10-02 09:14 VERBOSE  task          sortmov         REJECTED: `Baby.Driver.2017.1080p.WEB-DL.H264.AC3-EVO` by require_field plugin because required field movie_name is `None`
2017-10-02 09:14 VERBOSE  imdb_lookup   sortmov         Imdb lookup failed for the.power.of.few.2013.1080p.bluray.x264.yify
2017-10-02 09:14 VERBOSE  task          sortmov         REJECTED: `The.Power.of.Few.2013.1080p.BluRay.x264.YIFY` by require_field plugin because required field movie_name is `None`
2017-10-02 09:14 VERBOSE  details       sortmov         Summary - Accepted: 0 (Rejected: 2 Undecided: 0 Failed: 0)
2017-10-02 09:14 VERBOSE  filesystem    sortoth         Starting to scan folders.
2017-10-02 09:14 VERBOSE  filesystem    sortoth         Scanning folder E:\Downloads\temp\others. Recursion is set to True.
2017-10-02 09:14 VERBOSE  details       sortoth         Task didn't produce any entries.
2017-10-02 09:14 VERBOSE  details       sortoth         Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

Posts: 3

Participants: 2

Read full topic

Reading multiple links per item from an rss feed stopped working

$
0
0

@aimaim wrote:

Hi everybody,

I'm fairly new to flexget. I first installed it on my synology nas to push some tv-shows from an rss feed to my jdownloader (headless). Since flexget kept my nas from hibernating I decided to install flexget on a raspberry pi 3.
I used the exact same config, but now unfortunately it does not work the same way it did before:

> tasks:
>   directdownload:
>     rss:
>       url: https://directdownload.tv/rss/2924
>       link: description
>       group_links: yes
>     accept_all: yes
>     exec:
>       - echo "text={{urls}}" >> "/home/pi/shares/nas/stuff/folderwatch/{{title}}.crawljob"

The resulting crawljob-file before looked something like this:

I will have to put the image of what the crawljob-file looks like now in the next post, as I am apparently not allowed to post two pictures in one post, as a new user,

Posts: 2

Participants: 1

Read full topic

Where to put config file on a Mac (newbie)

$
0
0

@abbimj wrote:

Hi, I'm new to flexget and new to coding in general.

I created a config.yml file and put it in /Users/myusername, and also tried putting it in /Users/flexget/myusername but I still can not run the task because I get the terminal message

2017-10-02 17:01 CRITICAL manager                       Failed to find configuration file config.yml
2017-10-02 17:01 INFO     manager                       Tried to read from: /Users/myusername, /Users/myusername/.flexget, /Users/myusername/.config/flexget
Could not instantiate manager: No configuration file found.

I thought maybe the folder needs to be hidden, (thus the dot "."), so I ran a terminal command to do that and ran the file again, but I get the same terminal message as above.

So, how do I make this work? Thanks in advance for the help.

Posts: 1

Participants: 1

Read full topic

Flexget cant find mechanize lib

$
0
0

@bencheg wrote:

Hello.

Mechanize lib is installed, but flexget didnt see it.

root@pink:~# pip list
html5lib (0.999999999)
mechanize (0.3.5)
pip (9.0.1)
pycurl (7.19.5.1)
setuptools (36.5.0)
six (1.11.0)
webencodings (0.5.1)
wheel (0.30.0)

Flexget log:
2017-10-04 13:23 CRITICAL formlogin tyt_nfl mechanize required (python module), please install it.
2017-10-04 13:23 WARNING task tyt_nfl Aborting task (plugin: form)

Why flexget didnt see mechanize?

ps: sorry for my bad english

Posts: 6

Participants: 2

Read full topic

Upgrade doesnt seem to work

$
0
0

@AndreasT wrote:

Hi!

I have a template called "tv" in my config file. It looks like the following;

templates:
  tv:
    assume_quality: aac
    configure_series:
      from:
        trakt_list:
          ...
      settings:
        upgrade: yes
        timeframe: 1 days
        target: 1080p hdtv-webdl h264+
        quality: 720p-1080p webrip-webdl h264+
    deluge:
      ...

For one of my shows, the different releases Flexget have seen are:

│ S01E02     │ 1d 17h    │ Some Show S01E02 720p HDTV X264-DIMENSION                       │ 720p hdtv h264 aac      │
│            │           │ Some.Show.S01E02.720p.HDTV.X264-DIMENSION                       │ 720p hdtv h264 aac      │
│            │           │ Some Show S01E02 HDTV x264-LOL                                  │ hdtv h264 aac           │
│            │           │ Some Show S01E02 1080p HDTV X264-DIMENSION *                    │ 1080p hdtv h264 aac     │
│            │           │ Some.Show.S01E02.1080p.HDTV.X264-DIMENSION                      │ 1080p hdtv h264 aac     │
│            │           │ Some Show S01E02 Other Lives 1080p AMZN WEB-DL DDP5 1 H 264-NTb │ 1080p webdl h264 dd+5.1 │
│            │           │ Some Show S01E02 WEBRip X264-RARBG                              │ webrip h264 aac         │

The release with the * is the one that has been downloaded. But why wasn't the AMZN release downloaded when it has both better source and audio? Trying to understand if something is wrong with my configuration, but I dont know what that would be.

Thanks for any help!

Edit: I'm using v2.10.95.

Posts: 5

Participants: 2

Read full topic

Download TV shows and subtitles in a remote device

$
0
0

@riramar wrote:

Hi All,

First post so take easy on me. :slight_smile:
I've try to search this in this forum but I didn't find a environment like mine.
I have two different devices for different propose.
One is a RPI (Raspberry Pi) with OpenELEC (with external drive) to download (Transmission) and watch TV shows.
Two is a CHIP with FlexGet (settings below) and other services not related to TV shows.
Today basically I'm using FlexGet to push the downloads on Transmission and save them in different folders according with the TV show name and season and it works perfectly. Now I want to start downloading subtitles for each TV show episode that FlexGet will push on Transmission.
I know that most probably I'll need to use Subliminal (https://flexget.com/Plugins/subliminal) to download the subtitle. The problem is I'm not storing the subtitles under the same device as FlexGet. From my understanding Subliminal would search for a file in the local storage in a folder pointed in the configuration file.
So how can I use Subliminal to download subtitles for TV shows that are storage remotely?

chip@chip:~$ cat .flexget/config.yml
templates:
  global:
    transmission:
      host: 192.168.1.30
      port: 9091
      addpaused: no
    clean_transmission:
      host: 192.168.1.30
      port: 9091
    series:
      settings:
        tvshows:
          quality: <=720p
          propers: no
          set:
            path: /media/HDEXTERNO/Videos/TV Shows/{{series_name}}/Season {{ series_season }}/
      tvshows:
        - 11.22.63
        - American Crime Story
        - American Gods
        - Bates Motel
        - Game of Thrones
        - Genius 2017
        - Gotham
        - Humans
        - Mr. Robot
        - Outcast
        - The Flash 2014
        - The Good Doctor
        - The Handmaids Tale
        - True Detective
        - Westworld
    notify:
      task:
        via:
          - email:
              from: (email)
              to: (email)
              smtp_host: smtp.gmail.com
              smtp_port: 587
              smtp_username: (username)
              smtp_password: (password)
              smtp_tls: yes

tasks:
  eztv:
    template: global
    rss:
      url: https://eztv.ag/ezrss.xml
  showrss:
    template: global
    rss:
      url: http://showrss.info/user/146075.rss?magnets=true&namespaces=true&name=null&quality=any&re=yes

Thanks!
Ricardo Iramar

Posts: 2

Participants: 2

Read full topic

Setup to download movies based on the imdb rating

$
0
0

@elvishp2006 wrote:

web_server: yes

templates:
  global:
    regexp:
      accept:
        - Dual Audio
        - Dublado

  IMDB-RATING:
    imdb_lookup: yes
    imdb:
      min_score: 6.2
      min_votes: 5000

  RSS-MOVIES:
    inputs:
      - rss: http://www.example.com/rss.php?cat=58 #HD-720p > Ação
      - rss: http://www.example.com/rss.php?cat=60 #HD-720p > Aventura

  DOWNLOAD-MOVIES:
    exists_movie:
      path: D:\Media\Movies
      allow_different_qualities: no
      lookup: imdb

    qbittorrent:
      path: D:\Torrents\Completos #Movies are moved after download
      label: movie
      host: localhost
      port: 8080

tasks:

  DOWNLOAD BY RATING:
    priority: 3
    template:
      - IMDB-RATING
      - RSS-MOVIES
      - DOWNLOAD-MOVIES

Are these settings correct?

Posts: 3

Participants: 2

Read full topic


Infamous Filename value replacement failed: (TypeError) object of type 'NoneType' has no len()

$
0
0

@ZileXa wrote:

This issue has haunted me in the past for TV shows, but I was able to solve it back then with some help here.
Unfortunately this time I need assistance again.

error:

2017-10-08 13:00 CRITICAL plugin        move-movies     Filename value replacement `{{tmdb_name|pathscrub}} ({{tmdb_year}}){% if quality|default(False) %} - [{{quality}}]{% endif %}{% if release_group|default(False) %} - [{{release_group}}]{% endif %}` failed: (TypeError) object of type 'NoneType' has no len()
2017-10-08 13:00 WARNING  task          move-movies     Aborting task (plugin: move)

task:

##### Move movies from downloads folder to the movies folder, along with possible subtitles and adding the files to the subtitle queue#
  move-movies:
    priority: 23
    template:
      - disable-seen-retry
      - movies-metainfo
    filesystem:
      path: "/{? folder.root ?}{? folder.downmovies ?}"
      recursive: yes
      retrieve: files
      regexp: '.*\.(avi|mkv|mp4)$'
    accept_all: yes
    regexp:
      reject:
        - \btrailer\b
        - \bsample\b
    move:
      to: "/{? folder.root ?}{? folder.movies ?}"
      rename: "{{tmdb_name|pathscrub}} ({{tmdb_year}}){% if quality|default(False) %} - [{{quality}}]{% endif %}{% if release_group|default(False) %} - [{{release_group}}]{% endif %}"
      along:
        extensions:
          - srt
          - sub
        subdirs:
          - Subs
      clean_source: 100
    kodi_library:
      action: scan
      category: video
      url: http://localhost
      port: 8080
    list_add:
      - subtitle_list:
          list: subtitles
          path: "{{location}}"
          remove_after: 7 days
    exec:
      on_exit:
        phase: find "/{? folder.root ?}{? folder.downmovies ?}"* -type d -empty -delete

The weird thing is, previous tasks have added files to Transmission, with correct names already, renaming nicely to "tmdb title (tmdb year) [quality]" (and also with an IF statement for release group) so this task should easily be able to process the files.

I can probably remove the release group because it never adds the name of the release group (like Sparks, Rarbg, JIFY) but that should not cause the plugin to abort because it's an IF statement.

Posts: 2

Participants: 1

Read full topic

Rename but keep release group for series and movies

$
0
0

@ZileXa wrote:

Currently I use this for renaming series and something similar for movies:

rename: "{{tvdb_series_name|escape|replace('&#39;', '')|pathscrub}} - {{series_id}}{% if tvdb_ep_name|default(False) %} - {{tvdb_ep_name|pathscrub}}{% endif %}{% if quality|default(False) %} - [{{quality}}]{% endif %}{% if release_group|default(False) %} - [{{release_group}}]{% endif %}"

My goal with release_group is to get the release group name like rarbg, sparks, yts. But it doesn't do anything. I understand this only works for anime. Is there another way?

Reason: finding subtitles via Subliminal not always works with a file hash because people simply do not upload the hash to the subtitle website. Therefore you have to find a match by filename, which is limited to the title, year/episode and quality. Without the release group name, you don't know what you are looking for.

Posts: 1

Participants: 1

Read full topic

Apply ep_regexp to several series and tv shows

$
0
0

@el_Salmon wrote:

Hi,
I use ep_regexp to match episodes from Spanish sources currently, because they use T**E** instead of S**E** or SE**E**. But it's tedious to config for every item in my series list:

templates:
  tv:
    series:
      - The Big Bang Theory:
         ep_regexp:
           - 'T(\d+)E(\d+)'
           - '\[T(\d+)\xAA\].*\[(\d+)\/24\]'
           - 'Temporada (\d+).*tulo (\d+)'
      - The Walking Dead:
         ep_regexp:
           - 'T(\d+)E(\d+)'

Is there any way to config ep_regexp in one place and to apply for every series item?

Posts: 2

Participants: 2

Read full topic

Starting out, can't seem to get config to work

$
0
0

@genendaro wrote:

Hello!

Can someone please take a look at this ultra simple config file I'm trying out:

 tasks:
   Series_download:
     rss: https://rarbg.to/rssdd.php?categories=41
     set:
       ut_path: C:\Users\username\Downloads
     series:
       - The Series Name
     download:
         path: C\Users\username\Downloads
         overwrite: yes
     exec: uTorrent /DIRECTORY "{{ut_path|pathscrub}}" "{{output}}"

All i get as a response is: Cannot use deluge from install directory because its python version doesn't match.

I do have Deluge on this PC but not using it currently and would like to have uTorrent for the download. Am I doing something completely wrong with the config file?

Help would be greatly appreciated!

R.L.

Posts: 5

Participants: 4

Read full topic

Extract multi-part links from rss feed (regex?!)

$
0
0

@raidyne wrote:

hi,

i would like to extract links from an rss feed and write it into a crawljob file for jdownloader2. problem is i'm already doing it with "manipulate" and "url" but sometimes the rss feed contains more than one link (multi part files) per item that i would like to extract. and this seems to mess up "url".

how can i achieve this?

example:
if the rss feed contains an item with the links:
http://hoster.com/file-part1.html
http://hoster.com/file-part2.html

i want both links to be written in the crawljob file, separated by semicolon

the relevant part of my configuration looks like this at the moment:

mytask:
    rss: http://myrss.feed
    manipulate:
      - url:
          from: description
          separator: ';'
          extract: '(http[s]?:\/\/(\S+)?(?:hostera\.|hosterb\.)\S+)'
    all_series: yes
    exists_series: /path/to/TV Shows/
    exec:
      - echo "text={{url}}" >> "/path/to/folderwatch/{{title}}.crawljob"
      - echo "autoConfirm=TRUE" >> "/path/to/folderwatch/{{title}}.crawljob"
      - echo "packageName={{title}}" >> "/path/to/folderwatch/{{title}}.crawljob"

thanks

Posts: 1

Participants: 1

Read full topic

RSS with a 'windows-1251' encoding

$
0
0

@Danil wrote:

I need to download torrents, using some rss-feed. There are a correct title and a correct torrent-link. But there is a 'windows-1251' encoding, so flexget ignores (skips) all cyrillic characters.
RSS has the following header:

<?xml version="1.0" encoding="windows-1251"?>
<rss version="2.0">
...

I have the following config:

tasks:
  nnm-club:
    rss:
      url: http://nnm-club.name/forum/rss2.php?f=218&t=1&uk=************
      other_fields: [description]
      ascii: yes
    accept_all: yes
    manipulate:
      - kinopoisk_id:
          from: description
          replace:
            regexp: '(.|\n)*kinopoisk.ru/rating/([0-9]+)(.|\n)*'
            format: '\2'
    kinopoisk:
      min_score: 7.0
      min_votes: 5000
    template:
      - global
      - movies

Maybe I can convert the title from windows-1251 to utf-8? Or some another way?
Please, help.

P.S. kinopoisk is analog of imdb.

Posts: 4

Participants: 2

Read full topic

TRAKT + Private Tracker + uTorrent

$
0
0

@Philippe_Castonguay wrote:

Hello,

I'm new, I am trying to get my configuration to work.

This runs, I ran flexget execute --task initshows

Then I run flexget execute and it seems to work, but not quite.

For some reason, it tries to download to "C:\Users\Philippe\Season <#>\" when I specified "C:\RAID\TV Shows"...

Now C:\RAID\ is a mapped drive, it's actually an external drive, and maybe it doesn't like using the mapping.

Config:

    tasks:
      initshows:
        manual: yes
        next_trakt_episodes:
          account: ###
          context: collected
          list: flexget
        accept_all: yes
        set_series_begin: yes
    #  follow show from ep:
    #    seen: local
    #    trakt_list:
    #      account: ###
    #      list: flexget
    #      type: episodes
    #    accept_all: yes
    #    set_series_begin: yes
    #    list_remove:
    #      - trakt_list:
    #          account: ###
    #          list: flexget
    #          type: episodes
    #    list_add:
    #      - trakt_list:
    #          account: ###
    #          list: flexget
    #          type: shows
      getshows:
        accept_all: yes
        configure_series:
            settings:
              # Configure all the series options to your taste
              identified_by: ep
              quality: 720p
              path: C:\RAID\TV Shows\{{series_name}}\Season {{series_season}}\
            from:
              trakt_list:
                account: ###
                list: flexget
                type: shows
        content_filter:
          require_mainfile: yes
          reject: '*.rar'
        discover:
          what:
            - next_series_episodes: yes
          from:
            - iptorrents:
                rss_key: ###
                uid: ###
                password: ###
                category:
                  - TV-x264
        utorrent:
          url: http://localhost:8080/gui/
          username: ###
          password: ###
          path: C:\RAID\TV Shows\

Recent run:

2017-10-27 20:04 VERBOSE  task_queue                    There are 2 tasks to execute. Shutdown will commence when they have completed.
2017-10-27 20:04 VERBOSE  input_cache   getshows        Restored 6 entries from db cache
2017-10-27 20:04 VERBOSE  discover      getshows        Discovering 6 titles ...
2017-10-27 20:04 INFO     discover      getshows        Ignoring interval because of --discover-now
2017-10-27 20:04 VERBOSE  discover      getshows        Star Trek: Discovery (2017) S01E07 hasn't been released yet (Expected: 2017-10-29 00:00:00)
2017-10-27 20:04 VERBOSE  discover      getshows        After Trek (2017) S01E06 hasn't been released yet (Expected: 2017-10-29 00:00:00)
2017-10-27 20:04 VERBOSE  discover      getshows        Searching for `The Last Man on Earth (2015) S03E10` with plugin `iptorrents` (1 of 4)
2017-10-27 20:04 VERBOSE  discover      getshows        Searching for `Modern Family (2009) S08E12` with plugin `iptorrents` (2 of 4)
2017-10-27 20:04 VERBOSE  discover      getshows        Searching for `Comic Book Men (2012) S06E11` with plugin `iptorrents` (3 of 4)
2017-10-27 20:04 VERBOSE  discover      getshows        Searching for `Bob's Burgers (2011) S07E01` with plugin `iptorrents` (4 of 4)
2017-10-27 20:04 VERBOSE  discover      getshows        No search results for `Bob's Burgers (2011) S07E01`
2017-10-27 20:04 VERBOSE  details       getshows        Produced 5 entries.
2017-10-27 20:04 VERBOSE  series        getshows        Ignored `The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY`. Does not meet quality require
2017-10-27 20:04 VERBOSE  task          getshows        ACCEPTED: `The Last Man On Earth S03E10 720p HDTV x264-AVS` by series plugin because matches qu
2017-10-27 20:04 VERBOSE  task          getshows        REJECTED: `Modern Family S08E12 720p HDTV x264-FLEET` by series plugin because nuked
2017-10-27 20:04 VERBOSE  task          getshows        ACCEPTED: `Modern Family S08E12 PROPER 720p HDTV x264-KILLERS` by series plugin because matches
2017-10-27 20:04 VERBOSE  task          getshows        ACCEPTED: `Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON` by series plugin b
2017-10-27 20:04 VERBOSE  task          getshows        ACCEPTED: `The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY` by accept_all plugin
2017-10-27 20:04 INFO     download      getshows        Downloading: Modern Family S08E12 PROPER 720p HDTV x264-KILLERS
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man On Earth S03E10 720p HDTV x264-AVS
2017-10-27 20:04 INFO     download      getshows        Downloading: Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY
2017-10-27 20:04 INFO     download      getshows        Downloading: Modern Family S08E12 PROPER 720p HDTV x264-KILLERS
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man On Earth S03E10 720p HDTV x264-AVS
2017-10-27 20:04 INFO     download      getshows        Downloading: Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY
2017-10-27 20:04 INFO     download      getshows        Downloading: Modern Family S08E12 PROPER 720p HDTV x264-KILLERS
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man On Earth S03E10 720p HDTV x264-AVS
2017-10-27 20:04 INFO     download      getshows        Downloading: Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY
2017-10-27 20:04 INFO     download      getshows        Downloading: Modern Family S08E12 PROPER 720p HDTV x264-KILLERS
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man On Earth S03E10 720p HDTV x264-AVS
2017-10-27 20:04 INFO     download      getshows        Downloading: Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON
2017-10-27 20:04 INFO     download      getshows        Downloading: The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY
2017-10-27 20:04 VERBOSE  details       getshows        Summary - Accepted: 4 (Rejected: 1 Undecided: 0 Failed: 0)
2017-10-27 20:04 INFO     content_filter getshows        Entry Modern Family S08E12 PROPER 720p HDTV x264-KILLERS has banned file *.rar, rejecting
2017-10-27 20:04 INFO     remember_rej  getshows        Remembering rejection of `Modern Family S08E12 PROPER 720p HDTV x264-KILLERS`
2017-10-27 20:04 VERBOSE  task          getshows        REJECTED: `Modern Family S08E12 PROPER 720p HDTV x264-KILLERS` by content_filter plugin because
2017-10-27 20:04 INFO     task          getshows        Plugin content_filter has requested task to be ran again after execution has completed.
2017-10-27 20:04 INFO     content_filter getshows        Entry The Last Man On Earth S03E10 720p HDTV x264-AVS has banned file *.rar, rejecting
2017-10-27 20:04 INFO     remember_rej  getshows        Remembering rejection of `The Last Man On Earth S03E10 720p HDTV x264-AVS`
2017-10-27 20:04 VERBOSE  task          getshows        REJECTED: `The Last Man On Earth S03E10 720p HDTV x264-AVS` by content_filter plugin because ha
2017-10-27 20:04 INFO     content_filter getshows        Entry Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON has banned file *.rar,
2017-10-27 20:04 INFO     remember_rej  getshows        Remembering rejection of `Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON`
2017-10-27 20:04 VERBOSE  task          getshows        REJECTED: `Comic Book Men S06E11 Return of the Mewes 720p HDTV x264-CRiMSON` by content_filter
2017-10-27 20:04 INFO     content_filter getshows        Entry The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY has banned file *.rar, rejecting
2017-10-27 20:04 INFO     remember_rej  getshows        Remembering rejection of `The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY`
2017-10-27 20:04 VERBOSE  task          getshows        REJECTED: `The Last Man on Earth S03E10 1080p HDTV x264-SERIOUSLY` by content_filter plugin bec
2017-10-27 20:04 INFO     task          getshows        Rerunning the task in case better resolution can be achieved.
2017-10-27 20:04 WARNING  discover      getshows        Input next_series_episodes did not return anything
2017-10-27 20:04 VERBOSE  discover      getshows        Discovering 0 titles ...
2017-10-27 20:04 INFO     discover      getshows        Ignoring interval because of --discover-now
2017-10-27 20:04 VERBOSE  details       getshows        Task didn't produce any entries.
2017-10-27 20:04 VERBOSE  details       getshows        Summary - Accepted: 0 (Rejected: 0 Undecided: 0 Failed: 0)

Posts: 6

Participants: 2

Read full topic


Mark RSS entires unseen

$
0
0

@advokatb wrote:

Hi. I'm trying to download torrents from same RSS feed (LITRCC) reguraly.
But every time torrent goes to transmission it marks as seen and become REJECTED every next launch.

tasks:
  LITRCC:
    rss:
      url: '{? litrcc.rss ?}'
      all_entries: no
    accept_all: yes
    template:
      - transmission
      - season

Can

    disable:
      - seen
      - seen_info_hash

help with this?

Posts: 1

Participants: 1

Read full topic

Allow season packs for all shows

$
0
0

@Mikkel_Petersen wrote:

Hey all. According to the documentation, you can only enable "season_packs: yes" under a specific series name. I.e.

series:
  - Some show
  - Another show:
      season_packs: yes
  - Third show

Say I want to enable season packs for all shows. (Reason being it would be easier to just write down all TV shows that I watch, and then those few shows Netflix releases season at a time, would be downloaded)

Currently I have to research which of my shows are released season at a time, and then specifify it for that specific show. Is something like this possible?

series:
season_packs: yes
  - Some show
  - Another show:
  - Third show

And then all shows would download season packs, if they haven't downloaded a single episode from that season?

Posts: 3

Participants: 2

Read full topic

Problem generating entries with sequence identifier

$
0
0

@Sultan wrote:

Hi there,

I'm new to Flexget (so if there are any other issues with my config, please let me know!), and I'm having an issue getting my configuration to work. I'm trying to set up 2 tasks: one that monitors a feed for new episodes of a series, and one that downloads all episodes of a series that I don't have (and assuming there's no history for that show within Flexget). Here's my config:

templates:

  anime:
    configure_series:
      settings:
        quality: 1080p
        from_group:
          - horriblesubs
          - deadfish
        begin: 01
        set:
          path: /path/to/download/{{series_name}}
      from:
        my_anime_list:
          username: username
          status:
            - watching
            - plan_to_watch
    transmission:
      host: localhost
      port: 9091
      username: username
      password: password

tasks:
  currently_airing:
    rss: https://nyaa.pantsu.cat/feed?
    template: anime

  backfill:
    template: anime
    discover:
      what:
        - next_series_episodes:
            backfill: yes
      from:
        - horriblesubs: yes
        - nyaa:
            category: anime eng
            filter: all
      interval: 0 hours

The issue I'm having is with the second task backfill. If I run it with:

identified_by: ep

&

- next_series_episodes:
    backfill: yes
    from_start: yes

I get:

2017-11-03 17:00 VERBOSE  discover      backfill        Discovering 7 titles ...
2017-11-03 17:00 VERBOSE  discover      backfill        Searching for `Shoujo Shuumatsu Ryokou S01E01` with plugin `horriblesubs` (1 of 7)
2017-11-03 17:00 VERBOSE  discover      backfill        Searching for `Shoujo Shuumatsu Ryokou S01E01` with plugin `nyaa` (1 of 7)
2017-11-03 17:00 VERBOSE  discover      backfill        No search results for `Shoujo Shuumatsu Ryokou S01E01`

and the debug is:

2017-11-03 14:54 DEBUG    est_released  backfill        Shoujo Shuumatsu Ryokou S01E01
2017-11-03 14:54 DEBUG    est_series_tvmaze backfill        Searching api_tvmaze for episode
2017-11-03 14:54 DEBUG    est_series_tvmaze backfill        show_name: Shoujo Shuumatsu Ryokou
2017-11-03 14:54 DEBUG    est_series_tvmaze backfill        series_season: 1
2017-11-03 14:54 DEBUG    est_series_tvmaze backfill        series_episode: 1
2017-11-03 14:54 DEBUG    est_series_tvmaze backfill        series_name: Shoujo Shuumatsu Ryokou
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        returning search params for series lookup: {'tvdb_id': None, 'name': 'Shoujo Shuumatsu Ryokou', 'tvmaze_id': None, 'tvrage_id': None}
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        searching db tvmaze_series for the values [('tvdb_id', None), ('name', 'Shoujo Shuumatsu Ryokou'), ('tvmaze_id', None), ('tvrage_id', None)]
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        did not find exact match for series Shoujo Shuumatsu Ryokou in cache, looking in search table
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        searching lookup table using title Shoujo Shuumatsu Ryokou
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        found series Girls' Last Tour from search table
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        returning series Girls' Last Tour from cache
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        searching for episode of show Girls' Last Tour in cache
2017-11-03 14:54 DEBUG    api_tvmaze    backfill        found episode id 1304413, number 1, season 1 for show Girls' Last Tour in cache
2017-11-03 14:54 DEBUG    est_series_tvmaze backfill        received air-date: 2017-10-06 00:00:00
2017-11-03 14:54 DEBUG    discover      backfill        Shoujo Shuumatsu Ryokou S01E01 has been released at 2017-10-06 00:00:00

etc.

So, it appears to be able to properly create an entry, but S01E01 is not a proper search parameter--these shows use a sequence identifier i.e. 01, 02, 03, etc., as in the config I posted above.

However, if I run with my config as posted, I get:

2017-11-03 16:58 VERBOSE  discover      backfill        Discovering 7 titles ...
2017-11-03 16:58 VERBOSE  details       backfill        Task didn't produce any entries.

Upon looking at the debug for the configuration I posted above, I see this:

2017-11-03 15:12 DEBUG    est_released  backfill        Shoujo Shuumatsu Ryokou 001
2017-11-03 15:12 DEBUG    est_series_tvmaze backfill        Searching api_tvmaze for episode
2017-11-03 15:12 DEBUG    est_series_tvmaze backfill        series_name: Shoujo Shuumatsu Ryokou
2017-11-03 15:12 DEBUG    est_series_tvmaze backfill        series_episode: 1
2017-11-03 15:12 DEBUG    est_series_tvmaze backfill        show_name: Shoujo Shuumatsu Ryokou
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        returning search params for series lookup: {'name': 'Shoujo Shuumatsu Ryokou', 'tvdb_id': None, 'tvmaze_id': None, 'tvrage_id': None}
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        searching db tvmaze_series for the values [('name', 'Shoujo Shuumatsu Ryokou'), ('tvdb_id', None), ('tvmaze_id', None), ('tvrage_id', None)]
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        did not find exact match for series Shoujo Shuumatsu Ryokou in cache, looking in search table
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        searching lookup table using title Shoujo Shuumatsu Ryokou
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        found series Girls' Last Tour from search table
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        returning series Girls' Last Tour from cache
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        searching for episode of show Girls' Last Tour in cache
2017-11-03 15:12 DEBUG    api_tvmaze    backfill        fetching episode 1 season 0 for series_id 31982 for tvmaze
2017-11-03 15:12 DEBUG    est_series_tvmaze backfill        Not enough parameters sent for episode lookup
2017-11-03 15:12 DEBUG    est_movies    backfill        Unable to check release for Shoujo Shuumatsu Ryokou 001, tmdb_release and movie_year fields are not defined
2017-11-03 15:12 DEBUG    discover      backfill        No release date could be determined for Shoujo Shuumatsu Ryokou 001
2017-11-03 15:12 DEBUG    series        backfill        no episodes found for series `Shoujo Shuumatsu Ryokou` with parameters season: None, downloaded: True
2017-11-03 15:12 DEBUG    series        backfill        no season packs found for series `Shoujo Shuumatsu Ryokou` with parameters season: None, downloaded: True

So, it seems that using the sequence identifier doesn't give enough information to allow the show to be properly looked up, an entry to be made, and then searched via the plugins. However, using the ep identifier results in unsearchable queries. I'm not really sure what to do here. Is there a way to strip the S01E from the search query? Or a way to use a different api to generate entries that would be compatible with my config? Could anybody give me a recommendation on how to fix this, or an alternative way to accomplish the purpose of my 2nd task?

Thank you.

Posts: 3

Participants: 2

Read full topic

Using and maintaining TRAKT and downloading shows

$
0
0

@Philippe_Castonguay wrote:

Hey,

I've tried for a week to get this configuration stuff to go, I can't seem to wrap my head around it.

I am hoping to scan Trakt to see if I have new shows added, and start at the next episode that isn't collected.

I then want it to use the next episode behavior to go through and download each episode. All the successful downloads should mark Trakt to say it's collected.

I also need to rename show's like "Bob's Burgers" to Bobs Burgers"

I have managed to add shows using a manual script, from trakt, and then the series will keep track of things for awhile, and download new episodes, but trakt isn't maintained and I lose all that history if the DB goes.

Any help for these parts would be appreciated!

Thanks

Posts: 2

Participants: 2

Read full topic

Accepting only first entry after entries sorted?

$
0
0

@omnigamer wrote:

Hey all, apologies if this is redundant or covered elsewhere but I've got a usecase that I can't seem to configure quite right: I'm sorting the output entries from my input plugin according to various criteria, and I'd like to just accept the first result, reject all the rest, and never see those rejected results again. The closest I've gotten with my filter steps of my task are:

        seen: local
        quality: 1080p bluray h264
        sort_by_weight:
            - field: 'torrent_seeds'
              weight: 50
            - field: 'torrent_snatches'
              weight: 5
        sort_by:
            reverse: true
        limit_new: 1
        accept_all: yes

After this filter step, I remove the discover value from the list which generated it, which ideally prevents flexget from searching (and downloading) it again. However, since I'm using the limit_new plugin to only accept the first value, the values rejected by it are added to the backlog, and this causes my filter block to simply add the next best result on the next run of the task.

Is there some way to handle this sort of thing that I'm not seeing here?

Posts: 5

Participants: 2

Read full topic

Viewing all 716 articles
Browse latest View live