mediaurl sempre http, no ssl
This commit is contained in:
@@ -48,7 +48,6 @@ def peliculas(item):
|
|||||||
patron = r'<a href="(?P<url>(?:https:\/\/.+?\/(?P<title>[^\/]+[a-zA-Z0-9\-]+)(?P<year>\d{4})))/".+?url\((?P<thumb>[^\)]+)\)">'
|
patron = r'<a href="(?P<url>(?:https:\/\/.+?\/(?P<title>[^\/]+[a-zA-Z0-9\-]+)(?P<year>\d{4})))/".+?url\((?P<thumb>[^\)]+)\)">'
|
||||||
elif item.contentType == 'tvshow':
|
elif item.contentType == 'tvshow':
|
||||||
if item.args == 'update':
|
if item.args == 'update':
|
||||||
debug = True
|
|
||||||
patron = r'<a href="(?P<url>[^"]+)".+?url\((?P<thumb>.+?)\)">\s<div class="titolo">(?P<title>.+?)(?: – Serie TV)?(?:\([sSuUbBiItTaA\-]+\))?[ ]?(?P<year>\d{4})?</div>[ ]<div class="genere">(?:[\w]+?\.?\s?[\s|S]?[\dx\-S]+?\s\(?(?P<lang>[iItTaA]+|[sSuUbBiItTaA\-]+)\)?\s?(?P<quality>[HD]+)?|.+?\(?(?P<lang2>[sSuUbBiItTaA\-]+)?\)?</div>)'
|
patron = r'<a href="(?P<url>[^"]+)".+?url\((?P<thumb>.+?)\)">\s<div class="titolo">(?P<title>.+?)(?: – Serie TV)?(?:\([sSuUbBiItTaA\-]+\))?[ ]?(?P<year>\d{4})?</div>[ ]<div class="genere">(?:[\w]+?\.?\s?[\s|S]?[\dx\-S]+?\s\(?(?P<lang>[iItTaA]+|[sSuUbBiItTaA\-]+)\)?\s?(?P<quality>[HD]+)?|.+?\(?(?P<lang2>[sSuUbBiItTaA\-]+)?\)?</div>)'
|
||||||
pagination = 25
|
pagination = 25
|
||||||
else:
|
else:
|
||||||
|
|||||||
@@ -726,6 +726,8 @@ def play_video(item, strm=False, force_direct=False, autoplay=False):
|
|||||||
mediaurl, view, mpd = get_video_seleccionado(item, seleccion, video_urls)
|
mediaurl, view, mpd = get_video_seleccionado(item, seleccion, video_urls)
|
||||||
if mediaurl == "":
|
if mediaurl == "":
|
||||||
return
|
return
|
||||||
|
# no certificate verification
|
||||||
|
mediaurl = mediaurl.replace('https://', 'http://')
|
||||||
|
|
||||||
# se obtiene la información del video.
|
# se obtiene la información del video.
|
||||||
if not item.contentThumbnail:
|
if not item.contentThumbnail:
|
||||||
|
|||||||
@@ -31,7 +31,6 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
|
|||||||
sources = scrapertools.find_single_match(data, r'sources: \[([^\]]+)\]')
|
sources = scrapertools.find_single_match(data, r'sources: \[([^\]]+)\]')
|
||||||
|
|
||||||
for media_url in scrapertools.find_multiple_matches(sources, '"([^"]+)"'):
|
for media_url in scrapertools.find_multiple_matches(sources, '"([^"]+)"'):
|
||||||
media_url = media_url.replace('https:', 'http:')
|
|
||||||
ext = scrapertools.get_filename_from_url(media_url)[-4:]
|
ext = scrapertools.get_filename_from_url(media_url)[-4:]
|
||||||
video_urls.append(["%s [%s]" % (ext, server), media_url])
|
video_urls.append(["%s [%s]" % (ext, server), media_url])
|
||||||
return video_urls
|
return video_urls
|
||||||
|
|||||||
Reference in New Issue
Block a user