need help on how to show Plot for a ListItem
#1
I have a plugin for a website. Most videos I create is an episode, for which I have the episode plot or summary parsed from the website.

I add it as follows:

liz=xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage)
liz.setInfo( type="Video", infoLabels={ "Title": name, "Plot": 'Hello World', "PlotOutline": 'Hello World', "Tagline": 'Hello World' } )
liz.setProperty("IsPlayable","true")
ok=xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=url,listitem=liz,isFolder=False)

How do I see the plot (in this example: 'hello world') in the xbmc gui. Is it possible to see this in confluence?

I just can't see this string anywhere in the gui while playing the video.

Thanks.

EDIT - thank you. that worked. really sorry about the wrong forum.
Reply
#2
You need to set content to movies or tvshows after adding all the listitems:

Code:
xbmcplugin.setContent(int(sys.argv[1]), 'Movies')

After that you need to change default view to a media-info type of view.

PS: WRONG FORUM SECTION.
Reply

Logout Mark Read Team Forum Stats Members Help
need help on how to show Plot for a ListItem0