Fix filmstreaming

This commit is contained in:
marco
2022-05-28 12:04:26 +02:00
parent 4ac8a7d863
commit 7fc11153fd

View File

@@ -83,11 +83,6 @@ def genres(item):
def findvideos(item):
data = support.match(item.url).data
urls = support.match(data, patron=r'<span data-link="([^"]+)',).matches
if len(urls) > 1:
data = urls
else:
url = support.match(item.url, patron='<iframe.*?src="([^"]+)').match
url = support.match(item.url, patron='<iframe [^>]+src="([^"]+)').match
data = support.match(url).data
return support.server(item, data)