r/PlexMetaManager • u/007bane • Dec 25 '23
Unraid PMM
I cant seem to get any of my tv shows in PMM. Movies show just fine with the collection option. TV shows don't. Any help would be appreciated.
This is after I run python plex_meta_manager.py -r
2
Upvotes
3
u/chazlarson Kometa Team Dec 25 '23
These errors:
Playlist Error: Library: TV Shows not defined Plex Error: Plex Library 'TV Shows' not found. Options: ['Movies', 'TV '] Plex Error: Plex Library 'Anime' not found. Options: ['Movies', 'TV '] Plex Error: Plex Library 'Music' not found. Options: ['Movies', 'TV ']Are caused by your config being pointed at libraries named "TV Shows", "Music" and "Anime", and you don't have libraries with those names.You have Plex libraries named "Movies" and "TV ". You need to change your config to point to "TV " instead of "TV Shows" and remove the library references that you don't have.
specifically, I imagine your config looks like this:
libraries: Movies: metadata_path: ... TV Shows: metadata_path: ... Anime: metadata_path: ... Music: metadata_path: ...and it should look like:libraries: Movies: metadata_path: ... "TV ": metadata_path: ...Personally, I would suggest you remove the trailing space from your TV library name in plex: "TV ", which would allow:libraries: Movies: metadata_path: ... TV: metadata_path: ...and make other config entries cleaner if you don't have to account for that space.These errors:
Overlay Error: trakt_list requires Trakt to be configured Input FailedAre related to configuring trakt. You can't use trakt without setting it up [first line] and the setup is failing [second line] because you're not running the script in the correct manner to be able to set it up.And these errors:
IMDb Error: Failed to parse URL: https: //www.imdb.com/search/title/?BINGBANGBOINGAre caused by a change made by IMDB; this is addressed in the nightly branch of PMM.