InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67) +---- Forum: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260) +---- Thread: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? (/showthread.php?tid=365880) |
InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Datalife - 2021-12-08 Hi Guys, This is my first post and I ask you for help on how to fix a screenshot to the default Estuary skin when I'm on fullscreen Live TV. I have installed and configured the Keymap Editor addon, everything ok. With the "ok" button on the remote control (when I watch the tv program in fullscreen mode) I open my "Custom_1106_Test.xml" screen (screenshot below attached) it is in alternative of "Info Screen" I have read and reread the InfoLabels page but can't find how to add the next Poster and next Episode Name. There is a way to see $ INFO [Pvr.NextEPGEventIcon] and $ INFO [VideoPlayer.NextEpisodeName] Thanks in advance RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Solo0815 - 2021-12-09 Here is my FR for this: https://forum.kodi.tv/showthread.php?tid=351556&pid=2922659#pid2922659 But unfortunately no one implemented this yet RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Datalife - 2021-12-10 mmh! Your post is two years old Ok, I think I get it... RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Datalife - 2022-03-02 Hi Guys after 2 months, because I don't know anything about python, json and .xml, I have obtained the two information and I have my custom skin. I watch for 90% of my time the Live TV I create the epg file with all the information I need (title, episodes, description, poster etc ...) with webgrab+ and I pass the info to tvheandend. This (I don't understand anything about python and json) is the script I created, one for the poster and one for episodename Code:
The scripts are the same only the result is different, there is a metod for use only one script ? (I spent two weeks but I'm not able) In my custom skin I use these Code:
Thanks in advace RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Datalife - 2022-03-06 No help ? A suggestion ? Thank in advance RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Datalife - 2022-03-07 OK Guys solved ! Everything works fine Close post RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - jjd-uk - 2022-03-07 Perhaps post what you did, so if anyone finds this thread when wanting to do something similar. That way they will find a solution instead of having to figure it out for themselves, as I assume you've done. RE: InfoLabels Pvr.NextEPGEventIcon and VideoPlayer.NextEpisodeName ? - Datalife - 2022-03-09 In the script I have inserted a "class" and an "instance" class NextInfo: def __init__(self, info): self.info = info def broadcast(self): return self.info Now the script works fine |