Kodi Community Forum
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)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25


RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-07

Container(10051).ListItem.Duration is working perfectly but Container(10051).ListItem.Mpaa is empty. Am I missing something?

Thanks.


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-07

Fml, used the language locale instead of getting a country locale. I guess I have to rewrite the language setting logic to cover the full locale string like en-US.


RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-07

Sorry.


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-07

Quick fix added on GitHub. Until I find a better solution -> You can set the certification country in the addon settings. 

Do you know if we have a list somewhere with used prefixes for different countries?
In Germany for example we have "FSK 16" but TMDb only returns "16".


RE: script.embuary.info - the little ExtendedInfo brother - bsoriano - 2019-08-07

(2019-08-07, 17:00)sualfred Wrote: Quick fix added on GitHub. Until I find a better solution -> You can set the certification country in the addon settings. 

Do you know if we have a list somewhere with used prefixes for different countries?
In Germany for example we have "FSK 16" but TMDb only returns "16".
@sualfred , TMDb has its own list, I think it is called "certifications_list" or something similar in their API.


RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-07

(2019-08-07, 17:00)sualfred Wrote: Quick fix added on GitHub. Until I find a better solution -> You can set the certification country in the addon settings. 

Do you know if we have a list somewhere with used prefixes for different countries?
In Germany for example we have "FSK 16" but TMDb only returns "16".
Working now, thanks. And I don't but they're a pain when it comes to trying to base things on their values.


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-07

It seems that we are the only idiots with a prefix: https://en.wikipedia.org/wiki/Motion_picture_content_rating_system

@bsoriano 
That's what I'm using, but it has no prefixes, just the value. Anyway. It's just Germany that has a prefix for each single rating so I'm adding it hardcoded for them.


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-08

Finished the shipped windows and added the script to my personal repo. 
These windows can be used for reference as long as I'm not finished the documentation.
It's now also possible to call the script directly.



The Embuary integration is also 99% done and I'll submit the script to the Kodi repo soon.


RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-08

I've completely removed Extended Info and Toolbox scripts and replaced them with this and your Helper script. Both working very well.

One little bug I found though is when you view the actor images and open any other image but the first one in the image viewer and then scroll through them instead of the next image in the sequence it starts at the first one.


RE: script.embuary.info - the little ExtendedInfo brother - User 405025 - 2019-08-08

(2019-08-07, 18:12)sualfred Wrote: It seems that we are the only idiots with a prefix: https://en.wikipedia.org/wiki/Motion_picture_content_rating_system

@bsoriano 
That's what I'm using, but it has no prefixes, just the value. Anyway. It's just Germany that has a prefix for each single rating so I'm adding it hardcoded for them.

unsure about the script state,but terms prefix values, if it still uses just number values a skin can call its custom skin string...

https://forum.kodi.tv/showthread.php?tid=330749&pid=2871255#pid2871255


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-08

I dropped custom skin strings for mpaa a long time ago. They doesn't make sense if a item is returning a rating from another country as fallback or because of another reason. The value itself has to be the correct one.


RE: script.embuary.info - the little ExtendedInfo brother - User 405025 - 2019-08-08

(2019-08-08, 16:50)sualfred Wrote: I dropped custom skin strings for mpaa a long time ago. They doesn't make sense if a item is returning a rating from another country as fallback or because of another reason. The value itself has to be the correct one.

Yepp, can be faky...
So what..

Huge thanks for the script btw, still no time to try, but the teasers and abilitys looking great (as your work here  always is)... Blush


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-08

Thanks

@Hitcher 
Changed that fullscreen slideshow behaviour. The clicked image should not change the position now.


RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-08

Thanks once again.

And certifications are a right pain for skinners.


RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-09

I've submitted it to the Kodi repo. Just waiting for the review and the merge.