26 lines
802 B
Python
26 lines
802 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from core import httptools, support
|
|
from platformcode import logger, config
|
|
|
|
|
|
def test_video_exists(page_url):
|
|
logger.debug("(page_url='%s')" % page_url)
|
|
global data
|
|
resp = httptools.downloadpage(page_url)
|
|
data = resp.data
|
|
if resp.code == 404 or 'Video is processing now' in data:
|
|
return False, config.get_localized_string(70449) % "Vidmoly"
|
|
return True, ""
|
|
|
|
|
|
def get_video_url(page_url, premium=False, user="", password="", video_password=""):
|
|
logger.debug("url=" + page_url)
|
|
global data
|
|
video_urls = support.get_jwplayer_mediaurl(data, 'Vidmoly')
|
|
for url in video_urls:
|
|
logger.debug(url)
|
|
url[-1] = url[-1].replace(',','').replace('.urlset','').replace('/hls','') + '|Referer=' + page_url
|
|
|
|
return video_urls
|