aggiunto server vidmoly, miglioria altadefinizioneclick

This commit is contained in:
marco
2020-05-17 20:13:03 +02:00
parent 929e2ec42d
commit 9307f72b99
7 changed files with 114 additions and 41 deletions
+4 -5
View File
@@ -1,7 +1,4 @@
# -*- coding: utf-8 -*-
# --------------------------------------------------------
# Conector Mixdrop By Alfa development Group
# --------------------------------------------------------
from core import httptools
from core import scrapertools
@@ -22,7 +19,9 @@ def get_video_url(page_url, premium=False, user="", password="", video_password=
video_urls = []
global data
media_url = 'https://' + scrapertools.find_single_match(data, 'id="videolink"[^>]+>\n?\s*//(.*?)<') + '&stream=1'
video_urls.append([".mp4 [Streamtape]", media_url])
url = scrapertools.find_single_match(data, 'id="videolink"[^>]+>\n?\s*//(.*?)<')
if url:
media_url = 'https://' + url + '&stream=1'
video_urls.append([".mp4 [Streamtape]", media_url])
return video_urls