fix Streaming Community

This commit is contained in:
Alhaziel01
2020-08-13 08:49:04 +02:00
parent 8fe172079c
commit 21b7d4e7ce

View File

@@ -177,7 +177,7 @@ def findvideos(item):
support.log()
itemlist=[]
url = support.match(support.match(item).data.replace('"','"').replace('\\',''), patron=r'video_url"\s*:\s*"([^"]+)"').match
playlist = support.match(url, patron=r'\./([^.]+)').matches
playlist = support.match(url.replace('https','http'), patron=r'\./([^.]+)').matches
for res in playlist:
itemlist.append(item.clone(title=support.config.get_localized_string(30137), server='directo', url=url.replace('playlist',res), quality=res, action='play'))
return support.server(item, itemlist=itemlist)