As in the title, so recently i changed remove overlays to true so I could run mass poster updater, and then turned all of them back to false to add overlays back. It has worked for my movies library but it has not worked for my tv shows library. I have tried moving false back and forwards a space or two to see if that worked but it did not. I checked and both library config layouts look identical for the most part to my eye, so I am bringing it here for more experienced help. thanks for any help provided.
#will create overlays for movies but not tv show library.
1 messages · Page 1 of 1 (latest)
Welcome @ionic cosmos!
Someone from <@&938443185347244033> will assist when they're available.
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.
we need to see logs
here is the latest updated logs file
📝 If you want to review this again, joejones:
: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> 📝
**User Info**
Author of Linked Message: joe jones
Person who Invoked the Command: joe jones
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 - ❌ PLEX LIBRARY ERROR
Page 13: Rec 06 - ⚠️ [WARNING]
Page 14: Rec 07 - ⚠️ NO ITEMS FOUND IN PLEX
Page 15: Rec 08 - ⚠️ MEMORY RECOMMENDATION
Page 16: Rec 09 - 💬 CONVERT WARNING
Page 17: Rec 10 - 💬💡️ PLEX DB CACHE ADVICE
Page 18: Rec 11 - 💬🪟🐧 WSL MEMORY RECOMMENDATION
Page 1/18
first off, why are you trying to run mass_poster_update on both libraries? this will contribute to bloat
Your config contains a reference to a library that doesn't exist:
[ERROR] | Plex Error: Plex Library 'kids Shows' not found. Options: ['Movies', 'TV Shows', 'Music', 'XPgamers'] |
The last two lines here are pointless for movie libraries.
Movies:
operations:
mass_poster_update:
source: tmdb
seasons: true
episodes: true
I don't understand what you're doing with some of this, like using showcollections in the movie library.
The immediate problem is bad indentation.
it's both inconsistent and incorrect.
libraries:
Movies:
operations:
mass_poster_update:
source: tmdb
remove_overlays: false
collection_files:
- file: config/showcollections.yml
- file: config/BatmanCollection.yml
- file: config/classicscollection.yml
- default: franchise
- default: universe
- default: resolution
- default: decade
- default: streaming
overlay_files:
- default: resolution
- default: streaming
- default: audio_codec
TV Shows:
operations:
mass_poster_update:
source: tmdb
seasons: true
episodes: true
remove_overlays: false
collection_files:
- file: config/showcollections.yml
- file: config/BatmanCollection.yml
- file: config/classicscollection.yml
- default: franchise
- default: universe
- default: resolution
- default: decade
- default: streaming
overlay_files:
- default: resolution
- default: streaming
- default: audio_codec
ahh ok, Yeah i had filled in the stuff for kids shows, but Have yet to create the library yet as acquiring and naming the files and taking longer than anticipated. I did remove the two lines you mentioned for the movies library, currently letting kometa run, and it is currently doing the movies library overlays, I just never could get tv shows overlays back after I removed them.
Your issue is that in the TV library, both collection_files and overlay_files are indented under operations so they are being ignored.
Ok, I removed the poster update for the shows library and am currently running it again to see if that works.
Did you fix the indentation? If not, nothing will change
I believe I did, though I am not sure if I was seeing what you were seeing. I have attached the update of what the shows library looks like now.
I would standardize on two spaces rather than switching between 3, 2, and 0
TV Shows:
remove_overlays: false # Set this to true to remove all overlays
collection_files:
- file: config/showcollections.yml
- file: config/BatmanCollection.yml
- file: config/classicscollection.yml
- default: franchise # This is a file within Kometa's defaults folder
- default: universe
- default: resolution
- default: decade
- default: streaming
- file: config/showcollections.yml # This is a file within Kometa's defaults folder
# see the wiki for how to use local files, folders, URLs, or files from git
overlay_files:
- default: resolution
- default: streaming # This is a file within Kometa's defaults folder
- default: audio_codec # This is a file within Kometa's defaults folder
Consistency helps readability
Ok that fixed everything, now I see what you were talking about, best to just make sure everything lines up properly. Thanks for your help.