mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
import sys
|
|
import re
|
|
from urlparse import urlparse
|
|
import xml.etree.ElementTree as ET
|
|
|
|
from lib.svtplay.utils import get_http_data
|
|
from lib.svtplay.log import log
|
|
from lib.svtplay.rtmp import download_rtmp
|
|
|
|
class Viaplay():
|
|
def handle(self, url):
|
|
return ("tv3play.se" in url) or ("tv6play.se" in url) or ("tv8play.se" in url)
|
|
|
|
def get(self, options, url):
|
|
parse = urlparse(url)
|
|
match = re.search('\/play\/(.*)/?', parse.path)
|
|
if not match:
|
|
log.error("Cant find video file")
|
|
sys.exit(2)
|
|
url = "http://viastream.viasat.tv/PlayProduct/%s" % match.group(1)
|
|
options.other = ""
|
|
data = get_http_data(url)
|
|
xml = ET.XML(data)
|
|
filename = xml.find("Product").find("Videos").find("Video").find("Url").text
|
|
|
|
if filename[:4] == "http":
|
|
data = get_http_data(filename)
|
|
xml = ET.XML(data)
|
|
filename = xml.find("Url").text
|
|
|
|
options.other = "-W http://flvplayer.viastream.viasat.tv/play/swf/player110516.swf?rnd=1315434062"
|
|
download_rtmp(options, filename)
|
|
|