Migliorie MaxStream

This commit is contained in:
Alhaziel01
2021-06-25 15:57:20 +02:00
parent 4ef89cdda8
commit cbe69ac2e3
2 changed files with 30 additions and 19 deletions

View File

@@ -4,7 +4,7 @@
"ignore_urls": [],
"patterns": [
{
"pattern": "https?://maxstream.video/.*?([^\/]+)$",
"pattern": "https?://maxstream.video/(?:e/|embed-|cast/)?([a-z0-9]+)",
"url": "https://maxstream.video/cast/\\1"
}
]

View File

@@ -2,7 +2,12 @@ from core import httptools
from core import scrapertools, support
from lib import jsunpack
from platformcode import logger, config
import re, ast, requests
import re, ast, requests, sys
if sys.version_info[0] >= 3:
import urllib.parse as urlparse
else:
import urlparse
def test_video_exists(page_url):
logger.debug("(page_url='%s')" % page_url)
@@ -12,35 +17,41 @@ def test_video_exists(page_url):
if "file was deleted" in data:
return False, config.get_localized_string(70449) % "MaxStream"
return True, ""
def get_video_url(page_url, premium=False, user="", password="", video_password=""):
logger.debug("url=" + page_url)
video_urls = []
url_video = ''
lastIndexStart = data.rfind('<script>')
lastIndexEnd = data.rfind('</script>')
script = data[ (lastIndexStart + len('<script>')):lastIndexEnd ]
char_codes = ast.literal_eval(re.search('\[[^]+]+]',script).group(0))
hidden_js = "".join([chr(c - int(re.search('parseInt\(value\)\s?-\s?([0-9]+)', script).group(1))) for c in char_codes])
# newurl = re.search('\$.get\(\'([^\']+)', hidden_js).group(1)
newurl = scrapertools.find_single_match(hidden_js, r'\$.get\(\'([^\']+)')
match = scrapertools.find_single_match(script, r'(\[[^\]]+\])[^\{]*\{[^\(]+\(parseInt\(value\)\s?-\s?([0-9]+)')
if match:
char_codes = ast.literal_eval(match[0])
hidden_js = "".join([chr(c - int(match[1])) for c in char_codes])
url_video = None
castpage = httptools.downloadpage(newurl, headers={'x-requested-with': 'XMLHttpRequest', 'Referer': page_url }).data
url_video = scrapertools.find_single_match(castpage, r"cc\.cast\('(http[s]?.*?)'")
newurl = scrapertools.find_single_match(hidden_js, r'\$.get\(\'([^\']+)')
castpage = httptools.downloadpage(newurl, headers={'x-requested-with': 'XMLHttpRequest', 'Referer': page_url }).data
url_video = scrapertools.find_single_match(castpage, r"cc\.cast\('(http[s]?.[^']+)'")
else:
logger.debug('Something wrong: no url found before that :(')
if url_video:
video_urls = []
video_urls.append(["mp4 [MaxStream]", url_video])
return video_urls
else:
raise "Something wrong: no url found before that :("
parse = urlparse.urlparse(url_video)
video_urls.append(['mp4 [MaxStream]', url_video])
try:
video_urls.append(['m3u8 [MaxStream]', '{}://{}/hls/{}/master.m3u8'.format(parse.scheme, parse.netloc, parse.path.split('/')[1]) ])
except:
logger.debug('Something wrong: Impossible get HLS stream')
return video_urls