Kodi Community Forum
Toolbox Script Blur Effect - 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: Aeon Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: Toolbox Script Blur Effect (/showthread.php?tid=263368)



Toolbox Script Blur Effect - DennisPru - 2016-03-08

Hey,

i love the Blur Effect while playing music. I want to use it in another Skin where the "now playing" view only shows a black screen. Is it possible to use this blur effect in another skin? I already searched in MusicVisualisation.xml and MusicOSD.xml for an function call something with blur or toolbox but couldnt find any

Dennis


RE: Toolbox Script Blur Effect - meowmoo - 2016-03-08

RunScript(script.toolbox,info=blur,id=PATH_TO_IMAGE)

From the wiki


RE: Toolbox Script Blur Effect - DennisPru - 2016-03-08

Thanks. This is what I need.

But I'm not really a skinner so I dont know exactly where i have to put this in

I guess in MusicVisualisation.xml in onload-Tag, right?

and where I get the cover-path from?


RE: Toolbox Script Blur Effect - meowmoo - 2016-03-08

since you wanna see the cover from the current playing song you need "MusicPlayer.Cover"

RunScript(script.toolbox,info=blur,id=MusicPlayer.Cover)

never used i myself so just guessing here...

put
<onload>RunScript(script.toolbox,info=blur,id='"MusicPlayer.Cover"',radius=20)</onload>

to the other onloads in you MusicViz.xml and see if it works Big Grin


RE: Toolbox Script Blur Effect - DennisPru - 2016-03-09

wow nice thanks. will test it right now Big Grin

//e
not working Sad
uploaded an image to /storage/img.jpg and tested with id='/storage/img.jpg' too.
black screen.

<onload>RunScript(...)</onload> is in MusicVisualisation.xml in addons/skin.arctic.zephyr/1080i


RE: Toolbox Script Blur Effect - DennisPru - 2016-03-09

Also tested to execute the RunScript Command from menu. Nothing happened Sad


RE: Toolbox Script Blur Effect - meowmoo - 2016-03-09

try

RunScript(script.toolbox,info=blur,id='"$INFO[MusicPlayer.Cover]"',radius=20)

if it still dont work i cant help you anymore :/