MInor Tweaks (#2404)

pull/2410/head
Chaz Larson 1 week ago committed by GitHub
parent d158b2e31f
commit 872c3ed6b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -71,14 +71,6 @@ A `key_name` is the name that replaces `<<key_name>>` in `title_format` to creat
An example of some keys and their names that would be generated from a `tmdb_collection` dynamic collection are: An example of some keys and their names that would be generated from a `tmdb_collection` dynamic collection are:
* `key`: "10"
* `key_name`: Star Wars Collection
* `key`: "1241"
* `key_name`: Harry Potter Collection
| `key` | `key_name` | | `key` | `key_name` |
|:------|:------------------------| |:------|:------------------------|
| 10 | Star Wars Collection | | 10 | Star Wars Collection |

@ -20,7 +20,46 @@ One thing that seems like a bit of an exception are the [defaults](../../default
There are defaults that create collections, overlays, and playlists. There are no default metadata files. There are defaults that create collections, overlays, and playlists. There are no default metadata files.
However, like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file. The defaults are referenced in the `config.yml` under a library with the `default` file type:
```yaml
libraries:
Movies:
collection_files:
- default: imdb
- default: genre
overlay_files:
- default: resolution
- default: ribbon
```
Typically, the defaults can be customized with template variables:
```yaml
libraries:
Movies:
collection_files:
- default: imdb
template_variables:
use_lowest: false
- default: genre
template_variables:
sep_style: red
overlay_files:
- default: resolution
template_variables:
use_576p: false
use_480p: false
- default: ribbon
template_variables:
style: black
weight_metacritic: 35
use_common: false
```
The specifics of what template variables are available for a given default are found on the wiki page for each default, which you can find starting [here](../../defaults/guide.md).
Like the rest of the [external files](../../config/file_types.md), these default references cannot be moved out of the `config.yml` file.
???+ tip ???+ tip

Loading…
Cancel
Save