diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-06 16:52:32 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-06 16:52:32 +0100 |
commit | 87ebdede17007b626b1275c66dde1e5aefd6cddc (patch) | |
tree | ce023bacfdbd1ba2e8321293dd0aee902a264e03 /doc/import/providers.md | |
parent | 8fd96b46e73a0e7f984305e487e383a471dfcf88 (diff) | |
download | jellything-87ebdede17007b626b1275c66dde1e5aefd6cddc.tar jellything-87ebdede17007b626b1275c66dde1e5aefd6cddc.tar.bz2 jellything-87ebdede17007b626b1275c66dde1e5aefd6cddc.tar.zst |
update book
Diffstat (limited to 'doc/import/providers.md')
-rw-r--r-- | doc/import/providers.md | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/doc/import/providers.md b/doc/import/providers.md deleted file mode 100644 index ecb5095..0000000 --- a/doc/import/providers.md +++ /dev/null @@ -1,82 +0,0 @@ -# Metadata Providers - -## `override` - -Allows for manual hardcoded metadata. This an instance of [`Node`](/doc/jellycommon/struct.Node.html). - -Special to this option are the `poster` and `backdrop` properties in the -`private` section. These are reference images local to _library\_path_ and -directly set the counterparts in `public`. - -### Example - -```yaml -id: library -sources: - - !override - public: - kind: !collection - title: "My Library" - children: - - movies - - stuff - private: - poster: library.png -``` - -## `auto_children` - -Scans the directory of the file currently processed for `*.yaml` and `.jelly`, -parses their ID and adds them as `children`. - -## `media` - -This references a media file on disk and links it to this node. Additionally it -extracts matroska metadata aswell. - -> [!NOTE] -> If `path` is a directory, then these options are applied recursively -> all files inside, automatically creating new nodes based on inferred IDs and -> linking them up. - -### Example - -```yaml -id: decay-2012 -sources: -- !media - path: /movies/decay.webm - ignore_metadata: true - ignore_attachments: false - ignore_chapters: false -``` - -## `trakt` - -The recommended provider for any movie, show or season. It automatically queries -other linked APIs. - -### Example - -```yaml -id: decay-2012 -sources: -- !trakt - kind: movie - id: 98052 -``` - -## `tmdb` - -Just like `trakt` but uses only TMDB instead. - -## `federated` - -Recursively federates a node with the same ID from another instance. Requires valid credentials in the seecrets file. - -```yaml -id: movies -sources: -- !federated - host: jellything.example.org -``` |