Kodi Community Forum
[FIX] Artist Slideshow not working - 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: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: XeeBo (https://forum.kodi.tv/forumdisplay.php?fid=140)
+----- Thread: [FIX] Artist Slideshow not working (/showthread.php?tid=155509)



[FIX] Artist Slideshow not working - Thev00d00 - 2013-02-09

So I noticed that artist slideshow is not working.

A quick look in ~/.xbmc/addons/skin.xeebo/720p/MusicVisualisation.xml shows that while the script is started, there is not MultiImage control for the images.

To fix it just edit the above file and add:

Code:
<control type="multiimage">
    <posx>0</posx>
    <posy>0</posy>
    <width>1280</width>
    <height>720</height>
    <imagepath background="true">$INFO[Window(Visualisation).Property(ArtistSlideshow)]</imagepath>
    <aspectratio>true</aspectratio>
    <timeperimage>5000</timeperimage>
    <fadetime>2000</fadetime>
    <randomize>true</randomize>
</control>

To the very top of the <controls> tag.

On my system, I also had to change
Code:
<onload>RunScript(script.artistslideshow)</onload>
to
Code:
<onload>RunScript(script.artistslideshow, daemon=True)</onload>
to make sure the script noticed the artist updates.

Hope this helps someone.


RE: [FIX] Artist Slideshow not working - stewenner - 2013-02-11

Thanks, this was a huge help!


RE: [FIX] Artist Slideshow not working - laytechs - 2013-10-31

adding the code worked for me also. thanks.

Why would it not work like it should by defaultHuh?


RE: [FIX] Artist Slideshow not working - jackhulk - 2014-10-11

(2013-02-09, 16:22)Thev00d00 Wrote: On my system, I also had to change
Code:
<onload>RunScript(script.artistslideshow)</onload>
to
Code:
<onload>RunScript(script.artistslideshow, daemon=True)</onload>
to make sure the script noticed the artist updates.

Hope this helps someone.

Where is this code please? I take it's in another .xml as I can't find it in MusicVisualisation.xml


RE: [FIX] Artist Slideshow not working - Thev00d00 - 2014-10-16

(2014-10-11, 23:10)jackhulk Wrote:
(2013-02-09, 16:22)Thev00d00 Wrote: On my system, I also had to change
Code:
<onload>RunScript(script.artistslideshow)</onload>
to
Code:
<onload>RunScript(script.artistslideshow, daemon=True)</onload>
to make sure the script noticed the artist updates.

Hope this helps someone.

Where is this code please? I take it's in another .xml as I can't find it in MusicVisualisation.xml


It was in MusicVisualisation.xml, you may have to add it if its not there.