#overlays being made for all resolution instead of just 4k. Want only 4k resolution overlayed.
1 messages ยท Page 1 of 1 (latest)
๐ If you want to review this again, exo_wolf:
:one: Right-click (or long press with phone) on the message that contains the log
:two: Select: Copy Message Link
:three: Use the command: /logscan <message_link> or !logscan <message_link> and paste the value copied from the previous step where you see <message_link> ๐
Welcome @hazy perch!
Thanks for being a Kometa Sponsor, we greatly appreciate it! Your ticket will now be diverted to <@&1097919568334311495> and <@&938443185347244033>.
Including meta.log from the beginning is a huge help. Type !logs for more information.
After attaching your log, do not forget to hit the green check boxes when prompted by our bot.
You can press the "Close Post" button above or type /close at any time to close this post.
Author of Linked Message: Exo_Wolf
Person who Invoked the Command: Exo_Wolf
File Name: meta.log
Table of Contents:
Page 01: User Info
Page 02: Kometa Info
Page 03: Kometa Summary Info
Page 04: Kometa Config.yml YAML Validation โ
Page 05: Plex Configuration - Section 1
Page 06: Plex Configuration - Section 2
Page 07: Plex Configuration - Section 3
Page 08: Rec 01 - โ ANIDB AUTH ERRORS
Page 09: Rec 02 - โ๐ BLANK API KEY ERROR
Page 10: Rec 03 - โ [ERROR]
Page 11: Rec 04 - โ MY ANIME LIST CONNECTION ERROR
Page 12: Rec 05 - โ ๏ธ [WARNING]
Page 13: Rec 06 - โ ๏ธ NO ITEMS FOUND IN PLEX
Page 14: Rec 07 - ๐ฌ CONVERT WARNING
not related, but this isn't valid
First guess would be that use_all: False does't work with resolution.
this is also invalid, nothing telling it that there are overlays / collections / metadata, etc: ```yaml
libraries: # This is called out once within the config.yml file
4k Movies:
- default: resolution
template_variables:
use_all: false
use_4k: true
horizontal_align: right
horizontal_offset: 20
vertical_align: top
vertical_offset: 20```
What would be the correct thing to put there? Or just remove it?
look at the rest of your config
libraries: # This is called out once within the config.yml file
4k Movies:
overlay_files: # << missing
- default: resolution
...
you need ```yaml
libraries: # This is called out once within the config.yml file
4k Movies:
overlay_files: #<--- THIS
- default: resolution
template_variables:
use_all: false
use_4k: true
horizontal_align: right
horizontal_offset: 20
vertical_align: top
vertical_offset: 20```
none is not an option, i'd recommend looking at the options in the wiki. it is a boolean, so either true or false
It looks to me like use_all: false doesn't turn off the dovetail variants that are used with editions.
If you turn off the individual resolutions, those get skipped as well, at least in my tests
If you don't want the managed status to be considered when deciding which collections to delete, leave it out.
This:
overlay_files:
- default: resolution
template_variables:
use_480p: false
use_576p: false
use_720p: false
use_1080p: false
use_4K: true
Gave me only 4K overlays
could probably do
- default: resolution
template_variables:
use_all: false
use_4k: true
use_edition: false
horizontal_align: right
horizontal_offset: 20
vertical_align: top
vertical_offset: 20
Assuming editions are also unwanted, sure.