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) |
script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2019-08-05 Embuary Info Script This script provides skinners the option to call The Movie DB for actor and video infos. Region, language, API, caching settings:
Supported Kodi versions
Download
Context menu add-on With the optional context menu add-on it's possible to use this script in all skins.
Wiki / documentation Please take a look at the readme and shipped .xml files of the script for reference. https://github.com/sualfred/script.embuary.info/blob/master/README.md Examples of calling the script
Shipped widgets (also available by browsing the addon)
Help to translate the script into your language! Translate on TransiFex Donations Free beer or money for the tip jar of my daughter is welcome and helps me to stay motivated Please click here to donate RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-05 @Hitcher fyi @jurialmunkey I have not tested any implementation with your plugin, but to get them working as they should you have to provide listitem properties to your listings: - ListItem.Property(id) = The Movie DB ID, required for tv, movie and persons. - ListItem.Property(call) = 'tv', 'movie' or 'person' which represents the type of the listitem. If it's an image you can use 'image' and it should be openend in the fullscreen viewer. RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-05 Thanks, hoping to have time to give a test later this week. EDIT: @sualfred Couldn't wait lol. When you say 'All available information of the called person' what exactly do you mean and how do we get that info? I've tried things like this -
Thanks. RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-05 Sorry, I'll create shipped xmls for reference tomorrow. I hope that helps: Persons: https://github.com/sualfred/script.embuary.info/blob/master/resources/lib/tmdb_utils.py#L231-L240 Movies: https://github.com/sualfred/script.embuary.info/blob/master/resources/lib/tmdb_utils.py#L273-L302 Shows: https://github.com/sualfred/script.embuary.info/blob/master/resources/lib/tmdb_utils.py#L317-L331 RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-05 Got it, thanks.
Works perfectly. RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-05 Err, there is no "Born". I assume just a copy/paste issue, but to prevent confusion to others: Code:
RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-05 Didn't take too long to modify script-script.extendedinfo-DialogInfo.xml into script-embuary-person.xml. Any thoughts on opening up a slideshow when clicking on an actor image instead of using script-embuary-image.xml to show just one? RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-05 I did that at first, but I was facing a memory bug that affected <focusedlayout> items. I'll take a look at it again. Please let me know if you are facing any issues or Python errors so it can hit the repo soon. RE: script.embuary.info - the little ExtendedInfo brother - Hitcher - 2019-08-05 (2019-08-05, 22:48)sualfred Wrote: I did that at first, but I was facing a memory bug that affected <focusedlayout> items. I'll take a look at it again.I see that ExtendInfo uses script-script.module.kodi65-pictureviewer.xml for the actor slideshow if that's any help to you. (2019-08-05, 22:48)sualfred Wrote: Please let me know if you are facing any issues or Python errors so it can hit the repo soon.Nothing so far, it's all good. Will test on my main setup later and report back. RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-05 Thanks, I know about his pictureviewer. It's basically the same like I do. I just had issues with another stack of the same images object. Totally weird one. Anyway, I'll give it another try. I would prefer a slideshow, too. RE: script.embuary.info - the little ExtendedInfo brother - chrissix666 - 2019-08-06 Do I have also here to take care of this problem i have with ExtendedInfo+Artwork or does it work completely different without this problem? RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-06 You always have to deal with those things. RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-06 @Hitcher Switched to a slideshow, see https://github.com/sualfred/script.embuary.info/commit/bc648a4bfa328bd8a13bda13aa1f054f2164ee0c RE: script.embuary.info - the little ExtendedInfo brother - the_bo - 2019-08-06 Great work again. In my skin can scroll through the actors while in the library. Would love to be able to show the bio details if possible beside the image of each actor while scrolling through them like below RE: script.embuary.info - the little ExtendedInfo brother - sualfred - 2019-08-06 This script has it's own window. There is no way to access any information outside of them. This is not a new skin helper service. |