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


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - roidy - 2020-03-08

(2020-03-08, 20:26)sualfred Wrote: Corona mode.

Lol... yep a bit worrying to see every actor had died today. Can confirm it's fixed now, Thanks  Smile


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - bsoriano - 2020-03-09

@sualfred, would you consider adding Genre to the listitem infolabels for the Next Aired function? 

Also, I am not sure why, but in my custom Next Aired window, when Embuary Info is pulling info from the cache, the image I am using for the episode (tv show landscape if available, tv show fanat if not) does not show up.  I can see that the infolabel has the correct value (the path to the image is correct), but it is not being displayed.  Any ideas?

Regards,

Bart


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - Gade - 2020-04-26

@sualfred

I use plugin://script.embuary.info/nextaired/week in a container.

Is it possible to add an onclick function like:
Code:
<onclick>ActivateWindow(videos,videodb://tvshows/titles/$INFO[ListItem.DBID]/,return)</onclick>

Right now it seems to open script-embuary-video.xml at all times.

Cheers
Gade


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2020-04-26

Just tested it on Leia and works perfectly fine on my end in a custom container.


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - Gade - 2020-04-26

(2020-04-26, 06:43)sualfred Wrote: Just tested it on Leia and works perfectly fine on my end in a custom container.

An onclick to a container with plugin://script.embuary.info/nextaired/week?
Can you please test in Matrix as well?
The container is at the home screen, so I'm launching the onclick from there.


EDIT: Matrix, d'oh! Not Krypton...


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - bsoriano - 2020-05-03

@sualfred, I have a strange issue with embuary info in Leia 18.6 (I use Windows).  When I browse to say, Top Rated Movies, the addon opens the info dialog (script-embuary-video.xml) automatically for each movie, without any other keypress than up or down to move through the list.  Any ideas? There must be something I am doing wrong in Amber, but I cannot figure it out.  This does not happen with Estuary.

This also happens with tv shows, and the next aired function, and with any view type.

I did not have this issue, as far as I can recall, with 18.5. I did not see anyhting in the log, and this is not happening with any other video addon.  What info, if any, would you like me to send you? Thanks for your help.

Regards,

Bart


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2020-05-03

Really no idea. I just fill the listing. If it's a Amber thing it must be something in the skin.


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - bsoriano - 2020-05-04

(2020-05-03, 19:06)sualfred Wrote: Really no idea. I just fill the listing. If it's a Amber thing it must be something in the skin.
@sualfred , thank you.  I was able to figure it out.  I have a hidden list with ListItem.FolderPath as content, that I use to show fanart for genres, studios, countries, etc.  I changed the visibility of this list so that it is not there for plugin paths and now I don't have the issue.  The list (in case someone else might find it useful) is this:

xml:

<!-- Hidden list for fanart background for studios, genres, countries, etc. -->
        <control type="list" id="4451">
            <left>-100</left>
            <top>-100</top>
            <content limit="20" sortby="random">$INFO[ListItem.FolderPath]</content>
            <autoscroll time="8000">true</autoscroll>
            <itemlayout />
            <focusedlayout />
            <visible>!String.StartsWith(ListItem.FolderPath,plugin)</visible>
        </control>

Regards,

Bart


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - Manolo0708 - 2020-06-17

Hello all,

I am a new to this so excuse my ignorance. I absolutely love this skin. It work great with the Jellyfin plugin and I run it on android tv. How do i get the movie information (jusy like in the youtube video) instead of playing the movie directly?


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - roliverosc - 2020-07-07

i have other bug. This causes kodi to quit unexpectedly.

Code:

2020-07-07 10:54:27.686 T:3072   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <type 'exceptions.RuntimeError'>
                                            Error Contents: Non-Existent Control 1
                                            Traceback (most recent call last):
                                              File "C:\Users\Usuario\AppData\Roaming\Kodi\addons\script.embuary.info\resources\lib\main.py", line 560, in onInit
                                                self.cont = self.getControl(1)
                                            RuntimeError: Non-Existent Control 1
                                            -->End of Python script error report<--



RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2020-07-07

which skin


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - roliverosc - 2020-07-07

Arctic Zephyr Leia-Mod of @beatmasterrs


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2020-07-07

The control ID is missing in his skinned windows. He has to fix it on his end.


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - Mr. V - 2020-07-15

Hi @sualfred

In the process of  skinning a custom next aired window.

I can see from the script code that the date and time are included in the plot.

watch gallery


Would you consider removing them from the plot? It will give more flexibility when coding.

Cheers
Mr. V


RE: script.embuary.info - get TMDb data - the little ExtendedInfo brother - sualfred - 2020-07-15

Sure, can you raise a issue on github please? I currently have zero time for anything on the PC (I have moved and still a ton to do). Otherwise there is a high chance that I'll miss it.

Edit:
I just will add a property with the clean plot for you. Otherwise there is a high chance that people don't get the airing date/time in other skins.