(2019-09-07, 16:48)Lunatixz Wrote: I'll look into it
anyone still looking to make this work, the issue is the guide data from tvguide doesn't work anymore. If you just want comet live just edit scraper.py and replace this function with this code. All it does is grab the live URL and add a single item called "Live" that will start the stream. No program info. If you want guide data I suggest using TV Guide Full screen with a valid source for comet and simply add this stream to the guide.
def getAddonMenu(self,url,ilist):
self.defaultVidStream['width'] = 960
self.defaultVidStream['height'] = 540
html = self.getRequest('https://comettv.com/watch-live/')
url = re.compile(' file: "(.+?)"', re.DOTALL).search(html).group(1)
thumb = self.addonIcon
fanart = self.addonFanart
ilist = self.addMenuItem("Live",'GV', ilist, url, thumb, fanart, None, isFolder=False)
return(ilist)