Kodi Community Forum

Full Version: Kodi16 getTVShowTitle()
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
On Kodi17
is an easy way to get the Series of an Selected Item:
info = sys.listitem.getVideoInfoTag()
title=info.getTVShowTitle()

Is there a possible way to do so in Kodi 16?
It should work on Episodes / or Series
perhaps this might work:
Code:
label = xbmc.getInfoLabel('ListItem.TVShowTitle')
Thanks worked