rimosso codice inutile

This commit is contained in:
marco
2019-12-05 19:06:09 +01:00
parent 5307db2a3c
commit 2e8275d6eb
4 changed files with 2 additions and 19 deletions
+1 -2
View File
@@ -34,8 +34,7 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
url = scrapertools.find_single_match(unpacked, "(?:src):\\\\'([^\\\\]+.mp4)\\\\'")
from lib import alfaresolver
itemlist.append([".mp4" + " [powvideo]", alfaresolver.decode_video_url(url, data)])
itemlist.append([".mp4" + " [powvideo]", url])
itemlist.sort(key=lambda x: x[0], reverse=True)
return itemlist
+1 -2
View File
@@ -37,8 +37,7 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
url = scrapertools.find_single_match(unpacked, '(http[^,]+\.mp4)')
from lib import alfaresolver
itemlist.append([".mp4" + " [streamplay]", alfaresolver.decode_video_url(url, data)])
itemlist.append([".mp4" + " [streamplay]", url])
itemlist.sort(key=lambda x: x[0], reverse=True)