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 - Hitcher - 2019-09-26 I know there's a difference sometimes from when an image is first used and then after it's been cached. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - edjalmo - 2019-09-29 Hi, @sualfred! Just two things:
RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-29 @edjalmo This commit has all other supported languages included: https://github.com/sualfred/script.embuary.info/commit/cd2384864feab7542cbae26c7cdcd16ea77a1946 Certifications have a fallback logic to US so a custom prefix is not the way to go. Does Portugal have a prefix for its certifications? If yes, which one? RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - edjalmo - 2019-09-29 (2019-09-29, 18:24)sualfred Wrote: @edjalmo It don't have! I say this just because some skin use this to know what certification image use, and exist some countries that have similar, like British and Brazil have a "18" certification, and since in infos it only show "18" I thought that this it would make a mess, but it seems not, in Amber skin they are showing correct, so theres something that skinners can use to get this info Thanks for the others languages. Worked here RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - edjalmo - 2019-09-30 Hi again, @sualfred! Another issue with translation is the "Known For" and "status". This labels is translated for our languages with translations of add-on, but the answer (let say this way) is not. You get this answer directly by TMDb, right? TMDb have translations for "acting", "writing", "directing", "ended", "Returning Series"... Theres a way you can get this answers in the user choise language (and English for fallback language, like you do for other things)? (My test was with pt-BR language) RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-09-30 The API result for these ones are not translated. It's up to the skinners to translate this values in their integration. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - bsoriano - 2019-10-02 (2019-09-30, 21:57)sualfred Wrote: The API result for these ones are not translated. It's up to the skinners to translate this values in their integration. @sualfred, thanks! I was not aware of this. @edjalmo , values have been localized in Amber as of today. Regards, Bart RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - beatmasterrs - 2019-10-26 Just a little question. Is it possible that the image lists in the background scroll to the currently displayed image when embuary-image.xml is open? Or is it possible to perform a custom onclick action on all containers containing images without opening embuary-image.xml? RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-10-26 Nope, not possible. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - patzzz - 2019-10-26 and is it possible shows a spinner image or the DialogBusy while a image is downloading/loading in embuary-image.xml? Mimic skin works this way with ExtendedInfo, but I can't adapt that code to work with EmbuaryInfo. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-10-26 There is usually no delay, because the images doesn't get "reloaded" again. I just bypass the container content to the image dialog with the same URLs. Kodi has already cached the images before the window goes visible. In my tests on my dev device plus the Shield they appear within a snap. RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - nessus - 2019-11-05 Hi sualfred Continuing replacing Marcel's scripts with yours i've came to big issue for me. The following window properties were provided by the skin.helper.script.service so skinners can use them where ever they want... Now, your script provides almost the same properties but only in script-embuary-video.xml window. Is it possible to have these available outside of the script-embuary-video.xml window?. The reason i am asking for this is because mostly i use these inside Kodi's videoinfo window and before i start skinning the script-embuary-video.xml window i like to know if is possible to make both windows similar like i have them now. My logic about these two windows in Bello is (and always was) to show only one window depending on the item. For me, it makes absolutely no sense to show a window full of info and then show another one with mostly the same info plus some. So, i am showing the standard videoifo window when the item its in local library and the on-line info window (script-embuary-video.xml) when it's not (usually for non-library widgets items). Cheers Nessus RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-11-05 My scripts don't have a live fetching feature/listitem monitor. I never was a fan of those. Slow, very slow and a performance penalty on slower devices. And the false positive return was always a issue. But @jurialmunkey created his tmdb tool that you can use to add a hidden container that is fetching these data for you -> https://forum.kodi.tv/showthread.php?tid=345847 RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - patzzz - 2019-11-23 Hi @sualfred ! I've 3 questions for you: 1) Is possible add an option to hide Movies and TV Shows with a release date in the future? For example, searching Code: RunScript(script.embuary.info,call=person,query='"Angelina Jolie"') 2020 - Those Who Wish Me Dead 2020 - Eternals 2020 - The One and Only Ivan 2020 - Come Away Personally, I don't like to see these future movies and an option to hide them or show them at the end of the list would be nice. 2) Aparently, the year isn't used when searching TV Shows using title + year. For example: Code: RunScript(script.embuary.info,call=tv,query='"Watchmen"',year=2019) 2019 - Watchmen 2008 - Watchmen: Motion Comic Why is showing a 2008 TV Show if 2019 is searched? Other example: Code: RunScript(script.embuary.info,call=tv,query='"Arrow"',year=2012) 2012 - Arrow 1956 - Broken Arrow <no year> - The Arrow ... with other title names and years Is this a bug? 3) I would like an option to make an exact search. For example, when I search Iron Man movie: Code: RunScript(script.embuary.info,call=movie,query='"Iron Man"',year=2008) Iron Man I Am Iron Man The Invencible 'Iron Man' Wired: The Visual Effects of Iron Man but with an exact search this select dialog could be avoided and only the information of the first result would be returned. Usually, only the first result is the movie and the rest are making of. Is possible add an option to this? Thanks! RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-11-23 Sure. As soon as I find some time I will checke the possible year bug and add options for the others. |