Req TV widget: channels of a channel group
#1
Dear all,
i am using Kodi 19.3 and was curious if an additional Live TV can be added (which is available via skin helper widgets as a workaround).
When selecting a new widget: "Live TV --> TV channel groups" it displays all available channel groups. Is it possible to rather select a specific channel group and et all the channels of that group (similar to last played)?
As reference: script.skin.helper.widgets
Quote:# get all channel groups and create a tv channels entry for each groups
for item in self.metadatautils.kodidb.channelgroups():
label = "%s: %s" % (self.addon.getLocalizedString(32020), item["label"])
widgetpath = "channels&mediatype=pvr&reload=$INFO[Window(Home).Property(widgetreload2)]"
widgetpath += "&channelgroup=%s" % (item["channelgroupid"])
all_items.append((label, widgetpath, "DefaultAddonPVRClient.png"))
Reply

Logout Mark Read Team Forum Stats Members Help
TV widget: channels of a channel group0