Kodi Community Forum
Release script.embuary.helper - a skin helper service / widgets alternative - 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.helper - a skin helper service / widgets alternative (/showthread.php?tid=345471)

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 26 27 28


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-09-18

Np. Happens to everyone.


RE: script.embuary.helper - a skin helper service / widgets alternative - User 405025 - 2019-09-23

Hi. Its me again.

2 questions

1st
I (like to) use the widgets provided here as a main category for script.skinshortcuts, to set content paths for widgets.

Which works pretty well.

But if i use youse common ||BROWSE|| Method i can't set the widgetreload attribute
So  how important is reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)] append for that case ?

I read  your wiki carefully wiki and thought the refresh op (- a library item has been updated) is done by kodi anyway, or am i missing somthing ?

Tested with and without that prop append for "resume" widget, booth refreshes after watching.

I use them just for HomeWidgets
xml:
<widget-groupings>
...
    <!-- USE script Browse Method, cant set refresh attr -->
    <shortcut label="embuary helper" type="32010" icon="skinnamerealtextures/defaultembuary1.png">||BROWSE||script.embuary.helper</shortcut>
    <!-- custom can set refresh attr , but more work -->
    <node label="local">
                <node label="20395">
                    <shortcut label="$ADDON[script.embuary.helper 32013]" icon="skinnamerealtextures/defaultembuary1.png" widget="video" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getinprogress&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                    <shortcut label="unwatched genres" icon="skinnamerealtextures/defaultembuary1.png" widget="inprogress" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getbygenre&amp;unwatched=True&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                </node>
                
                <node label="20342">
                    <!-- content genres -->
                    <shortcut label="135" icon="skinnamerealtextures/defaultembuary1.png" widget="addon" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getgenre&amp;type=movie&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                    <!-- Suggestions based on random watched item -->
                    <shortcut label="$ADDON[script.embuary.helper 32007]" icon="skinnamerealtextures/defaultembuary1.png" widget="video" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getsimilar&amp;type=movie&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                    <!-- Suggestions based on last watched item -->
                    <shortcut label="$ADDON[script.embuary.helper 32014]" icon="skinnamerealtextures/defaultembuary1.png" widget="video" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getsimilar&amp;pos=0&amp;type=movie&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                    <!-- suggestion random genre -->
                    <shortcut label="$ADDON[script.embuary.helper 32009]" icon="skinnamerealtextures/defaultembuary1.png" widget="video" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getbygenre&amp;type=movie&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                    <!-- in progress movies random genre -->
                    <shortcut label="$ADDON[script.embuary.helper 32013]" icon="skinnamerealtextures/defaultembuary1.png" widget="video" widgetType="video" widgetTarget="video">plugin://script.embuary.helper/?info=getinprogress&amp;type=movie&amp;reload=$INFO[Window(home).Property(EmbuaryWidgetUpdate)]</shortcut>
                </node>
...


2st
regarding to mixed content widget(s) action behaviour.

It seems KODI ignoring default select action (myvideos.selectaction),  when select content , e.g. Continue watching widget.

In my case content is set to videos, but it always force the dialogcontextmenu, regardless of kodi setting.

Actual i am using
an include, but may there is also something i am missing here.

xml:
<onclick condition="String.IsEqual(Window(home).property(myvideos.selectaction),3)">Action(Info)</onclick>
<onclick condition="![ListItem.IsFolder | ListItem.IsCollection] + ListItem.IsResumable + !String.IsEqual(Window(home).property(myvideos.selectaction),3) + [String.IsEqual(Window(home).property(myvideos.selectaction),2) | String.IsEqual(Window(home).property(myvideos.selectaction),1)]">PlayMedia($ESCINFO[ListItem.FilenameAndPath],resume)</onclick>

Is there any other way to circumstance the dialogcontextmenu activation within path attributes ?


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-09-23

1 -> It's optional and you don't need the refresh info label for this kind of integration. Only if you want to have your widget updated on a library item change without switching the windows. In that case you have to hardcode it in the skin window where you place it. 
2 -> Kodi core behaviour. It's because listitem.dbid and listitem.dbtype is set. Your onclick has a lower priority and gets ignored.


RE: script.embuary.helper - a skin helper service / widgets alternative - User 405025 - 2019-09-23

(2019-09-23, 12:58)sualfred Wrote: 1 -> It's optional and you don't need the refresh info label for this kind of integration. Only if you want to have your widget updated on a library item change without switching the windows. In that case you have to hardcode it in the skin window where you place it. 
2 -> Kodi core behaviour. It's because listitem.dbid and listitem.dbtype is set. Your onclick has a lower priority and gets ignored.

Thank you very much for the infos, helped alot.
Smile


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-10-03

FYI:
I've played a little with PIL and the shipped genre widget now automatically generates thumbs like in the screenshots below. ListItem.Art(poster.%i) is still available if skinners want to use them.
This feature is currently only available on GitHub.

Image

Image


RE: script.embuary.helper - a skin helper service / widgets alternative - bsoriano - 2019-10-03

(2019-10-03, 08:25)sualfred Wrote: FYI:
I've played a little with PIL and the shipped genre widget now automatically generates thumbs like in the screenshots below. ListItem.Art(poster.%i) is still available if skinners want to use them.
This feature is currently only available on GitHub.

ImageImage
@sualfred , this is really cool, thank you! 

Regards,

Bart


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-10-05

It's available on my repo now for testing before it hits the Kodi repo.


RE: script.embuary.helper - a skin helper service / widgets alternative - bsoriano - 2019-10-09

@sualfred, A user has configured in the Amber skin the "Continue Watching" movies widget that you provide in the script as a submenu.  However, when clicking on the submenu and browsing those movies, the title shown in the Top Bar is just "Embuary Helper", since what I am displaying is Container.FolderName, and Kodi fills it with just "Embuary Helper".  Is there a way for me to get the info that the script function being used is "Continue Watching" so I can display that in the Top Bar in the skin? Thank you for your help.

On another note, in Matrix you cannot get to any of the widgets provided from the Video Addons, when you click on Embuary Helper it shows an error that says "This is a tool to provide features to a skin and requires skin integration".  Is this something you can fix or it is just a Matrix problem?

Regards,

Bart


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-10-09

$INFO[Container.PluginCategory]  // edit: But it's possible that he has to reassign it, because I've added filling this info value only a few weeks ago.

I have to test the Matrix issue on my end.


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-10-13

FYI:
-> I've removed the simple focus monitor because it's slow and unused. The hidden container with the getbydbid method is faster and better to use.
-> The upcoming version has a library tag detection. I use it to auto populate hubs based on available library tags, see https://github.com/sualfred/script.embuary.helper/wiki/Service:-Running-tasks#detect-and-populate-library-tags


RE: script.embuary.helper - a skin helper service / widgets alternative - manfeed - 2019-10-15

I've noticed that now in my kodi.log there are lines like these...

xml:

2019-10-15 23:02:41.310 T:6296  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-15 23:02:41.567 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:42.068 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:42.570 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:43.242 T:6296   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Universal Pictures / Atlas Entertainment / Classico.png
2019-10-15 23:02:47.448 T:6916   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/1423
2019-10-15 23:02:50.517 T:7224  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-15 23:02:50.669 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:51.171 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:51.672 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:53.393 T:6916   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/1470
2019-10-15 23:02:56.444 T:1072  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-15 23:02:56.605 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:57.106 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:57.607 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:02:58.255 T:1072   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Fox Searchlight Pictures / Watermark / Dune Entertainment III.png
2019-10-15 23:02:58.256 T:6916   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/1467
2019-10-15 23:03:01.309 T:6296  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-15 23:03:01.474 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:03:01.975 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:03:02.477 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:03:03.268 T:6916   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Fox Searchlight Pictures / Watermark / Dune Entertainment III.png
2019-10-15 23:03:03.824 T:7224   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Lantica Media / Flexibon Films / Dragon Root Securities / Altitude Film Sales / Dimension Films / Entertainment Studios Motion Pictures / Tea Shop & Film Company / thefyzz.png
2019-10-15 23:03:03.827 T:6296   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/1357
2019-10-15 23:03:06.890 T:6916  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-15 23:03:07.039 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:03:07.540 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-15 23:03:08.042 T:6064   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\LeiaGames\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'

I found that these errors appear when I activate the option to play a theme.mp3 when browsing the list of movies. If I turn off that option they don't appear. I tried even your github version and it's the same; however it didn't happen some versions ago...

Thanks for your help and for this script, that I use more and more in Aeon TAJO


RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-10-16

@manfeed 

Can you please try this commit? 
https://github.com/sualfred/script.embuary.helper/commit/6b754ca6e8b271886b8938d1d26f320ddb0af716


RE: script.embuary.helper - a skin helper service / widgets alternative - manfeed - 2019-10-16

I'm afraid the errors keep appearing even with the last update...

xml:

2019-10-16 09:39:39.527 T:5744  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-16 09:39:39.695 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:39.695 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:40.196 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:40.196 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:40.697 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:40.697 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:42.474 T:6452   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Fox Searchlight Pictures / Watermark Pictures / Dune Entertainment III.png
2019-10-16 09:39:43.678 T:6484   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/2
2019-10-16 09:39:46.745 T:5744  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-16 09:39:46.917 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:46.917 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:47.418 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:47.418 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:47.919 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:47.919 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:49.686 T:6484   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Universal Pictures / Atlas Entertainment / Classico.png
2019-10-16 09:39:50.174 T:3608   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/3
2019-10-16 09:39:53.263 T:5744  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-16 09:39:53.419 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:53.419 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:53.919 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:53.919 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:54.419 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:54.419 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:55.769 T:6452   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/4
2019-10-16 09:39:58.834 T:5744  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-16 09:39:59.005 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:59.005 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:39:59.505 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:39:59.505 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:00.005 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:00.005 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:01.776 T:3608   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Walt Disney Pictures / Lin Pictures / Rideback / Marc Platt Productions / Hurwitz Creative.png
2019-10-16 09:40:02.561 T:6484   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/5
2019-10-16 09:40:05.629 T:3608  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-16 09:40:06.025 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:06.026 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:06.526 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:06.526 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:07.027 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:07.027 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:08.567 T:6452   ERROR: CImageLoader:Big GrinoWork - Direct texture file loading failed for resource://resource.images.studios.white/Troublemaker Studios / Lightstorm Entertainment / 20th Century Fox / TSG Entertainment.png
2019-10-16 09:40:09.180 T:3608   ERROR: XFILE::CDirectory::GetDirectory - Error getting videodb://movies/titles/6
2019-10-16 09:40:12.251 T:5744  NOTICE: CDVDAudioCodecFFmpeg::Open() Successful opened audio decoder mp3float
2019-10-16 09:40:12.423 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:12.423 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 1) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:12.924 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:12.924 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 2) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'
2019-10-16 09:40:13.425 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get skin image special://skin/media/DefaultAudio.png -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\addons\\skin.aeon.tajo\\media\\DefaultAudio.png'
2019-10-16 09:40:13.425 T:5904   ERROR: [ script.embuary.helper ] Image error: Could not get image for DefaultAudio.png (try 3) -> [Errno 2] No such file or directory: 'C:\\Leia2\\portable_data\\userdata\\addon_data\\script.embuary.helper\\img\\tmp\\671e676ef3f8c824a857898fc38a7625.jpg'



RE: script.embuary.helper - a skin helper service / widgets alternative - sualfred - 2019-10-16

Does the DefaultAudio.png exists in your skin/media directory?

Edit:
Or is it packed in a xbt file?


RE: script.embuary.helper - a skin helper service / widgets alternative - manfeed - 2019-10-16

Yes...

Image