How to stop posters overwriting? #41
-
Hiya guys! I finally got this working more or less after a few traumas, thanks for all the brilliant work. Still having a bit of trouble here and there with the YML but, in the main, it's up and running. Quick question which I'm sure is something obv. If I set up a collection for an actor - say Clint Eastwood, it pulls the collection together and adds a photo of the actor as the poster from TMDB. I changed that out to one that matches the style of the rest of my collections, but when I run the script again it overwrites my poster and replaces it with the one from TMDB. How do I turn that off :-) It only does it on actors, the ones I have set for Trending movies etc maintain my poster. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
im assuming your doing something like this for you actor collections collections:
Robin Williams:
actor: tmdb
tmdb_person: 2157 tmdb_person will update the summary and profile of the collection to the tmdb person to have it only update the bio youd do something like this collections:
Robin Williams:
actor: Robin Williams
tmdb_biography: 2157 or you could use the assets directory (this is what i do). You set the asset directory location via the plex attribute by default its located in the same directory as your config.yml at
Having a local asset will override tmdb grabbing the poster because it already has one. |
Beta Was this translation helpful? Give feedback.
im assuming your doing something like this for you actor collections
tmdb_person will update the summary and profile of the collection to the tmdb person to have it only update the bio youd do something like this
or you could use the assets directory (this is what i do). You set the asset directory location via the plex attribute by default its located in the same directory as your config.yml at
/config/assets
. Then the program will automatically look in the assets folder for a folder with a name corresponding to the collection name and the…