diff --git a/plugin.video.alfa/servers/cnubis.py b/plugin.video.alfa/servers/cnubis.py deleted file mode 100755 index 50978ebf..00000000 --- a/plugin.video.alfa/servers/cnubis.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- - -from core import scrapertools -from platformcode import logger - - -def get_video_url(page_url, premium=False, user="", password="", video_password=""): - logger.info("page_url=" + page_url) - video_urls = [] - - data = scrapertools.cache_page(page_url) - media_url = scrapertools.find_single_match(data, 'file: "([^"]+)",.*?type: "([^"]+)"') - logger.info("media_url=" + media_url[0]) - - # URL del vĂ­deo - video_urls.append(["." + media_url[1] + " [cnubis]", media_url[0].replace("https", "http")]) - - for video_url in video_urls: - logger.info("%s - %s" % (video_url[0], video_url[1])) - - return video_urls