Fix filmstreaming casi particolari, nuovo server goodstream

This commit is contained in:
marco
2022-05-28 16:26:51 +02:00
parent 1401d79879
commit 4b71a0d708
5 changed files with 60 additions and 12 deletions
+7 -3
View File
@@ -83,6 +83,10 @@ def genres(item):
def findvideos(item):
url = support.match(item.url, patron='<iframe [^>]+src="([^"]+)').match
data = support.match(url).data
return support.server(item, data)
urls = []
data = support.match(item.url).data
urls += support.match(data, patron=r'<span data-link="([^"]+)').matches
url = support.match(data, patron='<iframe [^>]+src="([^"]+)').match
if url:
urls.append(support.match(url).data)
return support.server(item, urls)