Skip to content

Latest commit

 

History

History
70 lines (57 loc) · 1.55 KB

exists_movie.md

File metadata and controls

70 lines (57 loc) · 1.55 KB
title description published date tags editor dateCreated
exists_movie
true
2022-12-11 20:27:55 UTC
markdown
2022-09-18 05:04:54 UTC

Existing movies

This plugin will scan through accepted entries, and reject any movie entry that is already found on disk.

Syntax

exists_movie:
  path: /path/to/movies
  [type]: {dirs|files}
  [allow_different_qualities]: {better|yes|no}
  [lookup]: {imdb|no}

Example

exists_movie: /storage/movies/

Example

exists_movie:
  - /storage/movies-sd/
  - /storage/movies-hd/

Advanced

type

By default, exists_movie will scan for directories within the given folder(s). If you would like to scan for files instead, use:

exists_movie:
  path: /storage/movies
  type: files

allow_different_qualities

By default, the exists_movie will not allow downloading of different qualities of the same movie. (If you already have Movie.720p then Movie.1080p will be rejected.) If you would like to allow different qualities of the same movie, you can use the advanced form of configuration, like so:

exists_movie:
  path: /storage/movies
  allow_different_qualities: yes

If you would only like to allow qualities that are better than what is currently on disk, you can use this format:

exists_movie:
  path: /storage/movies
  allow_different_qualities: better

lookup

By default, exists_movie will use the internal movie parser. If you would like to use imdb_lookup instead, use:

exists_movie:
  path: /storage/movies
  lookup: imdb