![]() |
Release [THUMBNAIL ADDON] Movie Director Thumbs resource addon - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Meta-Data provider and Artwork Packs (https://forum.kodi.tv/forumdisplay.php?fid=71) +--- Thread: Release [THUMBNAIL ADDON] Movie Director Thumbs resource addon (/showthread.php?tid=342720) Pages:
1
2
|
[THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-04 What is it about? Only exclusive for movies there is a own container for directors available in Kodi. In most skins (also the Kodi standard skin) there is a place to show a director thumb in the views intended. But it will either display nothing or a simple fallback image. With this addon and the addition of one single line of code in a .xml of your skin, you can make visible directors thumbnails in your skin. Showcase on Aeon MQ7 (Kodi skin i use most) Showcase on Estuary (Kodi standard skin) I am a bit surprised that in all the kodi years nothing has been implemented in such a native way. I searched a lot in the forum, some members who are familiar with coding wrote down some thoughts in some threads to implement it, but never ever heard anything about it, and also never such a thing was released in that way. However, i have to mention there is sure another way to implement director thumbs. But it needs SkinHelper and runs via webservice, which means that internet connection is always necessary and also slower. Look here https://forum.kodi.tv/showthread.php?tid=288682&highlight=director+thumb and here https://github.com/kodi-community-addons/script.skin.helper.service/wiki/Webservice Thanks @Angelinas who making me aware of this alternative possible integrating solution. Pros of the SkinHelper webservice implementation:
Cons of the SkinHelper webservice implementation:
Pros of my Recource Addon implementation:
Cons of my Resource Addon implemention:
¹On post #2 there are implementation tutorials and also a ready usable paste/copy solution for the Kodi standard skin Estuary, please also ask the skin maintainer how to find the right .xml file and .xml code section. Also ask them politely if they could implement. ___ DOWNLOAD LINK TO THE ADDON ONLY (EMPTY, WITHOUT DIRECTOR THUMBS): resource.images.moviedirectorthumbs.zip File size packed and unpacked ≈0,5MB https://drive.google.com/file/d/1wqdJzownj3qM-4UBkKWjpqjPByCB0Fbj/view?usp=sharing -> download and install from zip in Kodi DOWNLOAD LINK TO THE DIRECTOR THUMBS RESOURCES COLLECTION: directorthumb_collection.rar Total directorthumb count ≈137.000, ≈20.000 with real thumbs and ≈117.000 with fallback thumbs File size packed ≈2GB File size unbacked ≈4,5GB https://drive.google.com/file/d/1sKlJQBLK5xd24I-2MLOaeR4CR9ldvaec/view?usp=sharing -> download, extract and then move all (or only needed) thumbs in the resources folder in the already installed addon. RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-04 How to implement in KODI default Skin Estuary JUST PASTE/COPY INTEGRATION SOLUTION:
(I recommend to backup the original! Also when you update the skin via repo the modification is gone) When use Estuary (latest Skin version 1.9.16) on Kodi 17 Krypton just paste/copy the Variables.xml in the following download link over it. https://drive.google.com/file/d/1EztFRVbHHqS0P09ry6hGbtJ85aD5FoMX/view?usp=sharing When use Estuary (latest Skin version 2.0.22) on Kodi 18 Leia just paste/copy the Variables.xml in the following download link over it. https://drive.google.com/file/d/1EoKUKUuZrCL5XAHckxN5nyt690xQohPP/view?usp=sharing MANUAL INTEGRATION SOLUTION (IT'S REALLY NOT VERY DIFFICULT - ALSO FOR LAYMAN):
Insert this: Code: <value condition="Container.Content(directors)">$INFO[ListItem.Label,resource://resource.images.moviedirectorthumbs/,.jpg]</value> between Code: <value condition="!String.isempty(ListItem.Thumb)">$INFO[ListItem.Thumb]</value> Code: <value>$INFO[ListItem.Icon]</value> That in the end it looks like this: Code: <value condition="!String.isempty(ListItem.Thumb)">$INFO[ListItem.Thumb]</value> How to implement in other Skins you use? Generally you have to find out in wich .xml and in wich code line there the poster variable or the icon/thumb variable is handled. In most cases the .xml file is called Variables.xml or IncludesVariables.xml or something similar. The variable name is called in every skin different. To make search easier, i'm almost certain that these codes are also in the variable we are searching: $INFO[Listitem.Art(poster)] and $INFO[ListItem.Thumb] or $INFO[ListItem.Icon]
This is the main code have to put into the variable: Code: <value condition="Container.Content(directors)">$INFO[ListItem.Label,resource://resource.images.moviedirectorthumbs/,.jpg]</value> In case of doubt, position this code line (value condition) at the beginning of the variable and not at the end. It could be (as with my skin) that the following code lines (value condition) exclude the new code line (value condition). If you have succeeded integrating into your skin, please let me know, I would like to post/edit the solution here as well. RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-04 Guidelines and "a kind of small conventions" ... ...if you complete your database with missing director thumbs So that everything looks uniform, here are a few things to consider: Naming of thumbnails:
Source of thumbnails:
Fallback if no thumbnails is on TheMovieDB: We then have to manually search for a thumb and then adapt the image to the TheMovieDB conventions.
Also a hudge DB with less quality is when "mubi.com" in the link Just a recommendation, you can use any fallback source that seems suitable! When you have found a thumb, download it (not the preview pic, take the full sized)
Fallback if not a single thumbnail is on the whole web: It depends very much on what kind of movies from which directors one have. On my side, my DB is very mixed and in only 1.2% of the cases I really did not find a picture. I'm pretty sure you also will find in 98% of cases a thumb, sometimes you have to search a bit deeper (max 1 min) If the case really does happen, and really no thumb is available, then we will also not leave it blank. We use the TheMovieDB fallback thumb. But why? 2 reasons:
![]() That was it ![]() Great fun on using the addon! RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - the_bo - 2019-04-04 Amazing work again Chris ![]() Your doing great benefit to the Kodi skinning much appreciated ![]() Are the director images included with the addon? I don't fancy having to download them all manually. Thanks very much RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-04 (2019-04-04, 17:14)the_bo Wrote: Amazing work again Chris A big thank you! RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - docwra - 2019-04-26 Any plans to get this integrated into mainline Kodi? RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-26 (2019-04-26, 09:45)docwra Wrote: Any plans to get this integrated into mainline Kodi?Hi! Sry, am not an english native speaker, what is a "mainline Kodi"? RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - docwra - 2019-04-26 (2019-04-26, 10:59)chrissix Wrote:Submitting a Pull Request to the Kodi github so this can work for all users going forward.(2019-04-26, 09:45)docwra Wrote: Any plans to get this integrated into mainline Kodi?Hi! Sry, am not an english native speaker, what is a "mainline Kodi"? RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-26 (2019-04-26, 11:11)docwra Wrote: Submitting a Pull Requestregarding PR, read my Signature ![]() all new territory for me, would need some initial assistance. Unfortunately help is hard to get here... RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - Captain_Pike - 2019-04-26 (2019-04-26, 11:24)chrissix Wrote: Unfortunately help is hard to get here...Agree, that's a pity! Like to use the addon, but thanks for sharing your ideas at all! RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - docwra - 2019-04-26 Well yes, when I was part of the team in the past I tried very hard to reduce the GitHub barrier but the team insisted that it was needed, frustrating I know... Hopefully this years Google Summer of Code may help, which I hope @Razze will mentor. I might go off and write a wiki article for the basics at some point, maybe that will help. RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-04-26 thx @docwra If you know any Kodi/Github/PR specialist who would spend an hour TeamViewer time helping me with my first PR, link him/her to me. Thank you very much. RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - Captain_Pike - 2019-05-22 Since this addon I browse in kodi more often in the movie director container. Now i finally have faces to associate with the directors - nice! ![]() Are there any news regarding how to get a larger collection of thumbs directly out of the box without having to fill too much gaps ourselfs? The addon is only 40 days out now and thread has already over 27.000 hits, considerable! I think the interest is there. Although the addon will be more suitable for Kodi nerdists, a bigger thumb collection out of the box would be the icing on the cake on this addon project! ![]() RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - chrissix666 - 2019-05-30 (2019-05-22, 12:04)Captain_Pike Wrote: Since this addon I browse in kodi more often in the movie director container.A big thank you for your feedback! I have received several PM's with similar or even the same concerns and wishes. Unfortunately, I do not have enough knowledge to do that, so i spent some time looking for help. Finally, @rschiks could help me, he is really a very advanced member made a very powerful script where I now have access via bulk/batch to all director thumbs avaiable on TMDB, and these are also rightly renamed so that the resource thumbs will be compatible for Kodi. The big advantage, in the future you will not have to carry about a single director thumb at your own anymore. It will be an all in one package. (The only exception will be fresh newcomer directors) ___ Disadvantages: For all resources that have special characters in their names, they will get falsified when install the addon. This is a problem on KODI core addon install process, not an Addon responsible issue. For the Actresses PNG's resource addon this affects a maximum of a dozen images, but here it will affect hundreds. For this reason i will publish the next addon version without resources in it, and then the resources have to be put afterwards manually in the addon folder. I know, a few mouse clicks more, but unfortunately there is currently no other way. But then everything works without problems! Another disadvantage, i do not know yet how big the filesize will be in the end, i'm still on bulk download. But I estimate about 3 gigabytes. But as everyone knows, all of my artwork and Kodi extension projects are not for low low powered first generetaion Rasperpi Pi's. Unfortunately, cause of this 2 points, falsification special characters on addon install and filesize this addon will be never suitable to be part of a repository! ___ But beside a few mouse clicks more on install and some storage space you'll get a huge extenstion for KODI experience, you can now associate the director's of your movies with faces! The real reason for all this is actually my big wish that director thumbs will be also like actor thumbs get an integration in KODI core in future KODI versions, so that it will be scrapeable. Without a KODI core integration the only way is a resource addon (this) or the skin performance slow and web dependent SkinHelper webservice solution. (Hope some Team Kodi members reading this, "blink" @Karellen "blink") Wait some days (or maybe 1-2 weeks) until the new huge updated Addon concept will be published. All credits for this project going to @rschiks, all resource stuff powered by TheMovieDB RE: [THUMBNAIL ADDON] Movie Director Thumbs resource addon - Captain_Pike - 2019-06-08 I'm realy looking forward to the huge director's resource bundle! ![]() Luckily i have more than enough storage space on my system where kodi is running. |