Kodi Community Forum
multiimage using fanart - 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)
+--- Thread: multiimage using fanart (/showthread.php?tid=160195)



multiimage using fanart - Jeroen - 2013-03-23

I must be going crazy. I have added a multiimage control to the homescreen and I want it to show a slideshow of random fanart from my library.

I have always succesfully used:

<imagepath>special://userdata/Thumbnails/Video/Fanart/</imagepath>

as a path.

But I can't get anything to show up.

All was working fine before, now after creating a new XBMC install this won't show any fanart.

Has this changed?


RE: multiimage using fanart - Jeroen - 2013-03-23

Hm, from the wiki:

Quote:As of XBMC v12:
The art URL's associated with library items are stored in the art table inside the video or music databases. These store the original URL to the art (e.g. from http://themoviedb.org, http://thetvdb.com, or http://theaudiodb.org). This means that central databases store where the art is obtained from, and multiple clients then just keep a local thumbnail cache as described below.

I guess that means what I want is not possible anymore? Sad


RE: multiimage using fanart - Jeroen - 2013-03-23

This is an option:

<thumb>$INFO[Window(Home).Property(RandomMovie.1.Art(fanart))]</thumb>

But then I'd have to choose between different content-types.

Any chance of multiimage controls using multiple paths?


RE: multiimage using fanart - phil65 - 2013-03-23

(2013-03-23, 17:19)Jeroen Wrote: This is an option:

<thumb>$INFO[Window(Home).Property(RandomMovie.1.Art(fanart))]</thumb>

But then I'd have to choose between different content-types.

Any chance of multiimage controls using multiple paths?

you can also use a list container + an alarmclock with Control.Move().


RE: multiimage using fanart - Jeroen - 2013-03-23

(2013-03-23, 17:23)phil65 Wrote:
(2013-03-23, 17:19)Jeroen Wrote: This is an option:

<thumb>$INFO[Window(Home).Property(RandomMovie.1.Art(fanart))]</thumb>

But then I'd have to choose between different content-types.

Any chance of multiimage controls using multiple paths?

you can also use a list container + an alarmclock with Control.Move().

Nice Smile Cheers Phil


RE: multiimage using fanart - User 34959 - 2013-03-23

In laymans terms please, when the timer runs out it.. moves the list focus? I don't understand.


RE: multiimage using fanart - Jeroen - 2013-03-23

You start a timer, for instance when a window is loaded:

<onload>AlarmClock(name_of_the_timer,Control.Move(50,1)),00:10,silent,loop)</onload>

This tells the container with ID 50 to move 1 position after 10 seconds without notification and after that start over

And the container with ID 50 has the image controls like:

<icon>$INFO[Window(Home).Property(RandomMovie.1.Art(fanart))]</icon>

and so on


RE: multiimage using fanart - jmarshall - 2013-06-02

At one point there was going to be some image:// directory VFS added for grabbing all art for a particular media type, but it didn't make it in (presumably as you can grab art via JSON-RPC now).

@vdrfan was the one that coded it up IIRC.