-
-
Notifications
You must be signed in to change notification settings - Fork 23
Archive Attributes
This is an optional YAML section for creating and maintaining an archive of title cards, separate from the title cards directly linked to your Plex/media library. This was designed with the intention of making it easier to share completed sets of title cards to places like /r/PlexTitleCards.
When an archive is in use (which is not the default behavior), all sub-variations (or profiles as they're referred to in the Maker) of a set are created in the archive directory. For example, if I am using the standard card type and specify a custom font to use for a series (Show (Year)
) and have archiving enabled (globally and for this series), the following directories will be created:
archive
└── Show (Year)
├── Generic Season Titles, Custom Font
│ ├── Summary.jpg
│ ├── Season 1
│ └── ...
└── Generic Season Titles, Generic Font
├── Summary.jpg
├── Season 1
└── ...
If a non-standard card type/class is being used, then the associated archive directories will have modified names (such as Generic Season Titles, Custom Font - Star Wars Style
).
Given a show's attributes (such as custom/generic font, or custom/generic season titles, etc.) the following directories will be produced in that show's archive in addition to the Generic Season Titles, Generic Font
archive1:
Custom Font | Custom Season Titles | Hidden Season Titles | Archive Directories |
---|---|---|---|
❌ | ❌ | ❌ | - |
❌ | ❌ | ✔️ | No Season Titles, Generic Font |
❌ | ✔️ | ❌ | Custom Season Titles, Generic Font |
❌ | ✔️ | ✔️ |
No Season Titles, Generic Font , Custom Season Titles, Generic Font
|
✔️ | ❌ | ❌ | Generic Season Titles, Custom Font |
✔️ | ❌ | ✔️ |
Generic Season Titles, Custom Font , No Season Titles, Custom Font , No Season Titles, Generic Font
|
✔️ | ✔️ | ❌ |
Generic Season Titles, Custom Font , Custom Season Titles, Custom Font , Custom Season Titles, Generic Font
|
✔️ | ✔️ | ✔️ |
Generic Season Titles, Custom Font , Custom Season Titles, Custom Font , Custom Season Titles, Generic Font , No Season Titles, Custom Font , No Season Titles, Generic Font
|
1 Unless
all_variations
is disabled; in which case only the specified archive will be created.
archive:
path: ./archive/
all_variations: true
summary:
create: true
background_color: "#51A5DB" # A nice blue background
logo_filename: logo.png
minimum_episodes: 4
Name | YAML Attribute | Allowed Values | Default Value | Required |
---|---|---|---|---|
Archive Path | path |
Any valid directory | - | ✔️ |
Archive All Variations | all_variations |
Boolean (true or false ) |
true |
❌ |
Summary Enable |
summary , create
|
Boolean (true or false ) |
false |
❌ |
Summary Background Color |
summary , background_color
|
A valid ImageMagick color | #1A1A1A |
❌ |
Summary Logo Filename |
summary , logo_filename
|
Any valid filename | logo.png |
❌ |
Summary Minimum Episodes |
summary , minimum_episodes
|
Any number | 1 |
❌ |
The location all archives of all series will be created and maintained under. If this option is omitted, no archive will be created.
Whether to archive all variations/profiles. If disabled (false
), then only the profile of each series will be created - i.e. custom font/season titles will only make the custom variation. If enabled (true
), then all sub-profiles of each series are created - so custom values also have their generic variations made. This is enabled by default.
Whether to create show summary images for each archived series. This is disabled by default.
A show summary is a montage of title cards for a given profile, and its purpose is to give a quick visual indication of the look of cards. For example, below are two different summary images created for the same series:
The background color to use for summary image creation. Default value is seen and listed above.
The logo filename to search for (and write to) for all logos used in summary creation. This is the name of the file within the show's source directory, so for the simplified preferences.yml
show below..
options:
source: ./source/
archive:
path: ./archives/
summary:
logo_filename: summary-logo.png
A summary for series the Show (Year)
would be looked for at /source/Show (Year)/summary-logo.png
,
The minimum number of episodes that must exist before creating a show summary. This is intended to prevent odd looking summaries containing one/two title cards, as the summary was created when the show was first airing. This value is inclusive, so if set to 5, and the associated archive directory has 5 title cards, a summary will be created.