Release script.embuary.info - get TMDb data - the little ExtendedInfo brother - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32) +--- Forum: Skinning (https://forum.kodi.tv/forumdisplay.php?fid=12) +---- Forum: Skin helper addons (https://forum.kodi.tv/forumdisplay.php?fid=300) +---- Thread: Release script.embuary.info - get TMDb data - the little ExtendedInfo brother (/showthread.php?tid=346034) |
RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-24 1 -> I have a workaround in mind. I'll give it try. 2 -> Not possible. Completely different calls. 3 -> In my tests all seasons of shows had the same fanart as the show itself. That's why I removed this call to reduce the loading time. I'll recheck it. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - patzzz - 2019-09-24 (2019-09-24, 19:08)sualfred Wrote: In my tests all seasons of shows had the same fanart as the show itself. That's why I removed this call to reduce the loading time. I'll recheck it.Currently, in the show itself script.embuary.info is showing backdrops images (poster size) mixing all seasons and in the new season dialog could only show images of each season, which are different to backdrop images. For example, Game of Thrones has 100 backdrops images in the show itself, but only 15 images in each season, so they are few in comparison. Some examples showing different seasons fanart with ExtendedInfo. American Horror Story - Season 1 American Horror Story - Season 2 American Horror Story - Season 3 Game of Thrones - Season 1 Game of Thrones - Season 2 RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-25 @patzzz Try this one. https://github.com/sualfred/script.embuary.info/commit/37c8a1fac47b0335db0b6ea64b02b45bef614f13 RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - patzzz - 2019-09-25 Wow !!! you're a machine and now the fanart is perfect, thank you very much. About Similar movies, I've tested the different tmdb helpers. For example, "The Terminator" is showing 20 Similar movies (5 movies are already in the Collection) with EmbuaryInfo and TheMovieDb Helper, but ExtendedInfo is only showing 15 similar movies excluding the 5 Collection movies. TheMovieDb Helper isn't showing Collection movies, so no repeated movies are shown, and it's very ugly to see repeated movies in Similar and Collection with EmbuaryInfo. ExtendedInfo is excluding Set movies within Similar movies on DialogMovieInfo.py: Code: set_ids = [item.get_property("id") for item in sets_thread.listitems] Could you add this filter to avoid showing repeated movies in Similar already shown in Set? RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-25 It would be possible, but the problem is that a lot of skinners only add a few containers and don't show collection items at all. In these cases the movies would be missing. All I can do is to add an optional setting for this. @patzzz https://github.com/sualfred/script.embuary.info/commit/792c1bda497121ede558f52a883fc576a4720d7e RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - patzzz - 2019-09-25 Thanks, you're ultra-fast and with good solutions. The new setting is great for skinners showing Collection movies and it doesn't affect the rest. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-25 Merged to Kodi repo. Should be available for everyone in the next hours. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - beatmasterrs - 2019-09-26 Just a short note/question: with extendedinfo.script the images in the lists don't seem to be as high resolution, which leads to lists scrolling smoother, with CPU's not that good. Is there any way you can control this? Can anyone confirm that? or does this behavior only occur to me? RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-26 The API doesn't offer an option to ask for lower resolutions. No speed penalties here. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - beatmasterrs - 2019-09-26 (2019-09-26, 10:35)sualfred Wrote: The API doesn't offer an option to ask for lower resolutions.I'm sorry, this was my mistake. I've to use instead of for a lower resolution RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - jurialmunkey - 2019-09-26 (2019-09-26, 10:35)sualfred Wrote: The API doesn't offer an option to ask for lower resolutions.Actually you can request different resolutions by building the image path differently. See here: https://developers.themoviedb.org/3/getting-started/images Posters come in these sizes: "w92", "w154", "w185", "w342", "w500", "w780", "original" RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-26 Hö? This makes a difference? It's the same URL. ListItem.Icon = Thumb if available, if not -> DefaultVideo.png for example ListItem.Art(thumb) = Thumb no matter if available or not @Rechi Please correct me if I'm wrong or if there is a image handling difference between those two info labels. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-26 (2019-09-26, 10:49)jurialmunkey Wrote:Thanks, wasn't aware of it.(2019-09-26, 10:35)sualfred Wrote: The API doesn't offer an option to ask for lower resolutions.Actually you can request different resolutions by building the image path differently. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - beatmasterrs - 2019-09-26 (2019-09-26, 10:51)sualfred Wrote: @Rechiit seems so, here are the differences: https://imgur.com/a/fC22teo Maybe ListItem.Icon generates an image of ListItem.Art(thumb). That might explain the differences. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-26 @beatmasterrs The low resolution ones are also having a much better downscaled quality. Do you have "background=true" added to your texture path? And does it make a difference? @Hitcher Do you know more about this behaviour? |