• 1
  • 16
  • 17
  • 18(current)
  • 19
  • 20
  • 28
Release script.embuary.helper - a skin helper service / widgets alternative
I'm occasionally seeing an "Embuary Helper error Check the log for more information" when browsing through the library.
What is causing this?
Embuary Helper error log 0
Failures always have an excuse, the most common one being; "It's somebody else's fault."
Reply
Which skin?

Edit:
Ah ftv.

@Hitcher
You need to exclude listitem.dbtype -> "set" for the getbydbid action
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
I used the example from the wiki.

https://github.com/sualfred/script.embua...ls-by-dbid

plugin://script.embuary.helper/?info=getbydbid&dbid=$INFO[ListItem.DBID]&type=$INFO[ListItem.DBType]
Reply
I have no checks implemented. It's better to use a $VAR[] with a check for existing ListItem.DBID + ListItem.DBType is movie, tvshow, episode or season.
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
Thinking about adopting this script for my skin as well... Just wondering: Can the RunScript(script.embuary.helper,action=calc,do='"(10 + 5) / 2"',prop=MyResult) action also pickup values to calculate from infolabels?
I'd like to use this to calculate the current output aspect ratio whenever opening a window. To be able to do this - as Kodi doesn't provide any aspect ratio infolabel that is not the (very buggy) skin aspect ratio infolabel - I can only see the option to calculate the aspect ratio using a script.
OSMC Skinner      |    The OSMC Skin for Kodi v20 Nexus (native 16:9, 21:9 and 4:3 skin, special cinemascope/CIH version available)      |     GitHub: https://github.com/Ch1llb0/skin.osmc
Reply
info labels are working
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
(2020-01-07, 21:37)sualfred Wrote: I have no checks implemented. It's better to use a $VAR[] with a check for existing ListItem.DBID + ListItem.DBType is movie, tvshow, episode or season.
OK thanks.
Reply
(2020-01-08, 19:18)Hitcher Wrote:
(2020-01-07, 21:37)sualfred Wrote: I have no checks implemented. It's better to use a $VAR[] with a check for existing ListItem.DBID + ListItem.DBType is movie, tvshow, episode or season.
OK thanks. 

But be aware of "*all season". This item has dbtype "season" but isn't callable with JSON. Integer.IsGreaterOrEqual(ListItem.Season,0) should be fine. As far as I remember there was no problem with specials, which have "0".
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
As soon as I switch to using a VAR the list doesn't get populated.

Works -

xml:
        <control id="9001" type="list">
            <include>HiddenHomeList</include>
            <visible>System.HasAddon(script.embuary.helper) + !String.IsEmpty(ListItem.DBID)</visible>
            <content>plugin://script.embuary.helper/?info=getbydbid&amp;dbid=$INFO[ListItem.DBID]&amp;type=$INFO[ListItem.DBType]</content>
        </control>

Doesn't work -

xml:
        <control id="9001" type="list">
            <include>HiddenHomeList</include>
            <visible>System.HasAddon(script.embuary.helper)</visible>
            <content>$VAR[EmbuaryItemDetails]</content>
        </control>

xml:
    <variable name="EmbuaryItemDetails">
        <value condition="!String.IsEmpty(ListItem.DBID) + [String.Compare(ListItem.DBType,movie) | String.Compare(ListItem.DBType,tvshow) | String.Compare(ListItem.DBType,episode)]">plugin://script.embuary.helper/?info=getbydbid&amp;dbid=$INFO[ListItem.DBID]&amp;type=$INFO[ListItem.DBType]</value>
        <value></value>
    </variable>

Any ideas?
Reply
(2020-01-10, 12:34)Hitcher Wrote: As soon as I switch to using a VAR the list doesn't get populated.

Works -

xml:
        <control id="9001" type="list">
            <include>HiddenHomeList</include>
            <visible>System.HasAddon(script.embuary.helper) + !String.IsEmpty(ListItem.DBID)</visible>
            <content>plugin://script.embuary.helper/?info=getbydbid&amp;dbid=$INFO[ListItem.DBID]&amp;type=$INFO[ListItem.DBType]</content>
        </control>

Doesn't work -

xml:
        <control id="9001" type="list">
            <include>HiddenHomeList</include>
            <visible>System.HasAddon(script.embuary.helper)</visible>
            <content>$VAR[EmbuaryItemDetails]</content>
        </control>

xml:
    <variable name="EmbuaryItemDetails">
        <value condition="!String.IsEmpty(ListItem.DBID) + [String.Compare(ListItem.DBType,movie) | String.Compare(ListItem.DBType,tvshow) | String.Compare(ListItem.DBType,episode)]">plugin://script.embuary.helper/?info=getbydbid&amp;dbid=$INFO[ListItem.DBID]&amp;type=$INFO[ListItem.DBType]</value>
        <value></value>
    </variable>

Any ideas?

string compare has changed to string.isequal([string],value)
Skins |  Titan M O D   •   S W A N (WIP)
Reply
Haha, not with it today.

Thanks.
Reply
@sualfred , would you consider adding a details_by_episode function to the script so that you can get tv show details info as window properties when what you have focused is an episode? I want to open an episode info window using the videodb:// path for the episode in a custom search dialog, but there is no ListItem info label for the tv show dbid, so I cannot build the full path videodb://tvshows/titles/<tv show dbid>/<season>/<episode dbid>?season=<season>&tvshowid=<tv show dbid>.  I have the season and the episode dbid, but not the tv show dbid.  Thanks for considering my request.

Regards,

Bart
Reply
Hi, i got an little 'issue' when try to blur images.

Most of the time its fine, but on some movie items it fails to blur image , even if it exists.

If i refresh the movie, the image can be blurred an all is working fine.

Unsure if that'll help

i packed a zip file, with MyVideos116.db ,log , and used nfo Files of 2 movies, where this was an issue. (each for before and after refresh)
https://drive.google.com/file/d/1Gz2Jv1U...sp=sharing

Log Snippet
log:
2020-01-25 07:58:02.221 T:13696   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <type 'exceptions.UnicodeDecodeError'>
                                            Error Contents: 'ascii' codec can't decode byte 0xc3 in position 25: ordinal not in range(128)
                                            Traceback (most recent call last):
                                              File "C:\apps\Kodi Leia\portable_data\addons\script.embuary.helper\default.py", line 43, in <module>
                                                Main()
                                              File "C:\apps\Kodi Leia\portable_data\addons\script.embuary.helper\default.py", line 19, in __init__
                                                self.getactions()
                                              File "C:\apps\Kodi Leia\portable_data\addons\script.embuary.helper\default.py", line 39, in getactions
                                                util(self.params)
                                              File "C:\apps\Kodi Leia\portable_data\addons\script.embuary.helper\resources\lib\utils.py", line 208, in encode
                                                winprop(prop,url_quote(string))
                                              File "C:\apps\Kodi Leia\portable_data\addons\script.embuary.helper\resources\lib\helper.py", line 125, in url_quote
                                                string = string.encode('utf-8')
                                            UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 25: ordinal not in range(128)
                                            -->End of Python script error report<--
2020-01-25 07:58:03.848 T:14736  NOTICE: [ script.embuary.helper ] Image blurring: Image has not changed. Skip H:\Filme\Bringing Out the Dead - Nächte der Erinnerung (1999)\Bringing Out the Dead - Nächte der Erinnerung (1999)-fanart.jpg.
2020-01-25 07:58:05.368 T:14736  NOTICE: Previous line repeats 2 times.
2020-01-25 07:58:05.368 T:14736  NOTICE: [ script.embuary.helper ] Image blurring: Image changed. Blur H:\Filme\Bridge of Spies Der Unterhändler (2015)\Bridge of Spies Der Unterhändler (2015)-fanart.jpg.
2020-01-25 07:58:05.369 T:14736  NOTICE: [ script.embuary.helper ] Use fallback average color: FFF0F0F0
Skins |  Titan M O D   •   S W A N (WIP)
Reply
I don't see any difference of the stored fanart path of "Bridge of Spies".
Both are having : H:\Filme\Bridge of Spies Der Unterhändler (2015)\Bridge of Spies Der Unterhändler (2015)-fanart.jpg

Weird that it works after you refreshed the item. Umlauts are no problem. Fixed that months ago.

But where does this exception came from? It's not related to the image blurring. What are you doing in this moment so I can reproduce it?
Main: Lancool II Mesh  - Ryzen 9 5900x - MSI x570 Unify - Zotac RTX 3080 AMP HOLO - 32GB Trident Z Neo 3600 CL16 -  EVO 960 M.2 250GB / EVO 940 250GB / MX100 512GB /  Crucial P1 2TB / WD Blue 3D Nand 2TB 
Sound: Saxx AS30 DSP - Beyer Dynamic Custom One Pro 
TV: Nvidia Shield 2019 Pro- Adalight 114x LEDs - Sony 65XG9505 - Kodi / Emby - Yamaha RX-V683 - Heco Victa 700/101/251a + Dynavoice Magic FX-4
Server: i3 Skylake - 8GB - OMV4 - 22TB Storage
Reply
(2020-01-25, 13:45)sualfred Wrote: I don't see any difference of the stored fanart path of "Bridge of Spies".
Both are having : H:\Filme\Bridge of Spies Der Unterhändler (2015)\Bridge of Spies Der Unterhändler (2015)-fanart.jpg

Weird that it works after you refreshed the item. Umlauts are no problem. Fixed that months ago.

But where does this exception came from? It's not related to the image blurring. What are you doing in this moment so I can reproduce it?

I just navigate to next movie (Bringing Out The Deead) and back again and open Info.

ONE THING I MISSED and not tested is the bahaviour when local nfo ist stored, which was the case here.

No time now to test myself to see if it's came from local nfo's.
Skins |  Titan M O D   •   S W A N (WIP)
Reply
  • 1
  • 16
  • 17
  • 18(current)
  • 19
  • 20
  • 28

Logout Mark Read Team Forum Stats Members Help
script.embuary.helper - a skin helper service / widgets alternative3