@fuufuu wrote:
Since the IMDB_lookup fails ~1/2 of the time im trying to get some redundancy by using TMDB and IMDB.
Im using the if plugin to check whenever imdb_score OR tmdb_rating is above a certian value, hoping it catches the movie if one of the lookup fails.
Using my current config it catches movies catched before, i guess because of the "accept" in "if".
Replacing it with "score < min_rating: reject" downloads nothing.
What is your take on improving imdb/tmdb lookup?My config:
tasks: movies_1080p: parsing: movie: guessit series: guessit inputs: - rss: https://domain.org/rss.php - rss: https://domain.org/rss.php imdb_lookup: yes tmdb_lookup: yes quality: 1080p bluray proper_movies: yes seen: local if: - has_field('imdb_score') and imdb_score < 7.5: accept - has_field('tmdb_rating') and tmdb_rating < 7: accept deluge: path: /home/xxx/Downloads/tmp/ movedone: /home/xxx/Downloads/Movies/{{movie_year}}/ label: movies
Posts: 1
Participants: 1