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

Accepting movie if new quality if higher than the one already downloaded

$
0
0

@MeRoL wrote:

Hi guys,

I'm trying to setup Flexget to download all new movies in 1080p quality from different RSS feeds. Each feed have 30 entries of the newest movies in the categories I want to download in. If flexget dosen't detect a 1080p version it waits a few minutes and searches for a 720p version. The reason for this is some HDRips etc. of new movies are not out in 1080p yet but only in 720p.

The thing I want flexget to do is to update the quality if a higher quality version is uploaded to the tracker. Lets say I grab IT 2017 in korean HDRip. And one month later the 1080p web-dl comes out. I want Flexget to automatically grab the higher quality version until a BluRay rip is downloaded.

This is my config so far, it works great for searching for 1080p first and then 720p afterwards if no 1080p was found. But i still miss the last about quality updates:

web_server: yes

schedules:
  - tasks: [1080p, 720p]
    interval:
      minutes: 20

templates:
  movies:
    imdb_lookup: yes
    seen_movies: strict

  1080p:
    template: movies
    priority: 2
    inputs:
      - rss:
          url: _rss feed url_
      - rss:
          url: _rss feed url_
    accept_all: yes
    quality: 1080p bluray|webdl|hdrip|webrip h264
    regexp:
      from: title
      reject:
        - PENTALOGY
        - H-SBS
        - REMUX
        - MA.5.1
        - DTS-HD
        - AVC
        - TRiOLOGY
        - DUOLOGY
        - UHD
        - COMPLETE
    download: /downloads/movies/
    notify:
      entries:
        title: "Flexget"
        message: "Download started:\n{{imdb_name}} ({{imdb_year}})"
        via:
          - pushover:
              user_key: _userkey for pushover_

  720p:
    template: movies
    priority: 3
    inputs:
      - rss:
          url: _rss feed url_
      - rss:
          url: _rss feed url_
    accept_all: yes
    quality: 720p bluray|webdl|hdrip|webrip h264
    delay: 10 minutes
    regexp:
      from: title
      reject:
        - PENTALOGY
        - H-SBS
        - REMUX
        - MA.5.1
        - DTS-HD
        - AVC
        - TRiOLOGY
        - DUOLOGY
        - UHD
        - COMPLETE
    download: /downloads/movies/
    notify:
      entries:
        title: "Flexget"
        message: "Download started:\n{{imdb_name}} ({{imdb_year}})"
        via:
          - pushover:
              user_key: _userkey for pushover_

Posts: 1

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 716

Trending Articles