Kodi Community Forum
[Request] Script to Display Albums of a Selected Artist - 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: [Request] Script to Display Albums of a Selected Artist (/showthread.php?tid=189790)



[Request] Script to Display Albums of a Selected Artist - DjCisco - 2014-03-20

Hi Community,

I am developing the following skin for which I have an artists view that is simply the List of Artists on top af the artist Fanart.

http://forum.xbmc.org/showthread.php?tid=184171


For this view it would be really great if I could display the Albums from the selected artists without leaving the view.

I was wondering if somebody could provie a script for fetching that info so it can be displayed in the skin.

thanks

DjCisco


RE: [Request] Script to Display Albums of a Selected Artist - jurialmunkey - 2014-03-20

script.extendedinfo http://forum.xbmc.org/showthread.php?tid=160558


RE: [Request] Script to Display Albums of a Selected Artist - DjCisco - 2014-03-21

I checked the script.extendedinfo post and development is kind of on hold, There is a post regarding the function that I need but without any hint as to how its supposed to be used, It doesnt really say if it was really implemented or not.

So is there anybody else that could help?


RE: [Request] Script to Display Albums of a Selected Artist - butchabay - 2014-03-21

Yes, download aeon nox and see how the script is called in MyMusicNav.xml


RE: [Request] Script to Display Albums of a Selected Artist - DjCisco - 2014-03-21

(2014-03-21, 12:05)butchabay Wrote: Yes, download aeon nox and see how the script is called in MyMusicNav.xml

Oh ok. I didnt new thar it was a standard feature in aeon nox. Thanks for the tip


RE: [Request] Script to Display Albums of a Selected Artist - `Black - 2014-03-21

No script needed. Use

PHP Code:
<content target="music">$INFO[ListItem.DBID,musicdb://artists/,]</content> 

and you should be able to display all albums of the selected artist in a container. Gotham required.


RE: [Request] Script to Display Albums of a Selected Artist - senna99 - 2014-03-21

Hello Black

Is this possible with plugin.audio /Thumbs.db. I use plugin.audio.mp3streams.

Best Regards


RE: [Request] Script to Display Albums of a Selected Artist - `Black - 2014-03-21

No idea, why don't you try it? Smile


RE: [Request] Script to Display Albums of a Selected Artist - senna99 - 2014-03-21

I will soon I install Gotham.
Regards


RE: [Request] Script to Display Albums of a Selected Artist - DjCisco - 2014-03-21

(2014-03-21, 19:04)`Black Wrote: No script needed. Use

PHP Code:
<content target="music">$INFO[ListItem.DBID,musicdb://artists/,]</content> 

and you should be able to display all albums of the selected artist in a container. Gotham required.

Excelent