Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.03 KB

Timeframe.md

File metadata and controls

43 lines (35 loc) · 1.03 KB
title description published date tags editor dateCreated
Timeframe
true
2022-09-18 05:20:04 UTC
markdown
2022-09-18 05:20:01 UTC

Movies Timeframe

The series plugin has timeframe functionality which allows download to wait certain time for better quality to appear. There isn't this kind of plugin for movies, but it can be achieved with some clever use of delay plugin.

Example:

templates:
  movies:
    imdb:
      min_score: 6.2
      min_votes: 5000
    seen_movies: strict
    download: ~/torrents/movies/

tasks:

  feed-1080p:
    template: movies
    priority: 1
    rss: http://example.com/feed.rss
    quality: 1080p
  
  feed-720p:
    template: movies
    priority: 2
    rss: http://example.com/feed.rss
    quality: 720p
    delay: 10 hours

This is effectively 10 hour timeframe for 1080p and if the movie is not found by then it will fall back to 720p.

Don't be worried about requesting the same feed twice, it is cached and the second feed does not request it again.