2013-03-02 21:26:28 +01:00
|
|
|
# ex:ts=4:sw=4:sts=4:et
|
|
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-02-12 19:43:37 +01:00
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
|
2014-01-26 01:19:47 +01:00
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2014-04-21 21:41:06 +02:00
|
|
|
from svtplay_dl.utils import get_http_data, is_py2_old
|
2014-03-09 16:26:45 +01:00
|
|
|
from svtplay_dl.utils.urllib import unquote_plus
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
2014-04-21 18:24:26 +02:00
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-01-26 01:19:47 +01:00
|
|
|
class Qbrick(Service, OpenGraphThumbMixin):
|
2014-05-01 23:17:57 +02:00
|
|
|
supported_domains = ['di.se', 'sydsvenskan.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
|
|
|
if re.findall(r"sydsvenskan.se", self.url):
|
2014-02-18 16:48:53 +01:00
|
|
|
data = self.get_urldata()
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"data-qbrick-mcid=\"([0-9A-F]+)\"", data)
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
2013-05-03 16:59:40 +02:00
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
mcid = match.group(1)
|
2013-01-17 00:21:47 +01:00
|
|
|
host = "http://vms.api.qbrick.com/rest/v3/getsingleplayer/%s" % mcid
|
2014-01-06 23:14:06 +01:00
|
|
|
elif re.findall(r"di.se", self.url):
|
2014-02-18 16:48:53 +01:00
|
|
|
data = self.get_urldata()
|
2013-04-29 14:33:36 +02:00
|
|
|
match = re.search("src=\"(http://qstream.*)\"></iframe", data)
|
|
|
|
if not match:
|
|
|
|
log.error("Can't find video info")
|
|
|
|
sys.exit(2)
|
|
|
|
data = get_http_data(match.group(1))
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"data-qbrick-ccid=\"([0-9A-Z]+)\"", data)
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
host = "http://vms.api.qbrick.com/rest/v3/getplayer/%s" % match.group(1)
|
2014-01-06 23:14:06 +01:00
|
|
|
elif re.findall(r"svd.se", self.url):
|
2014-03-09 16:26:45 +01:00
|
|
|
match = re.search(r'video url-([^"]*)\"', self.get_urldata())
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
2014-03-09 16:26:45 +01:00
|
|
|
path = unquote_plus(match.group(1))
|
|
|
|
data = get_http_data("http://www.svd.se%s" % path)
|
2013-05-05 12:57:42 +02:00
|
|
|
match = re.search(r"mcid=([A-F0-9]+)\&width=", data)
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
|
|
|
host = "http://vms.api.qbrick.com/rest/v3/getsingleplayer/%s" % match.group(1)
|
|
|
|
else:
|
|
|
|
log.error("Can't find site")
|
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
data = get_http_data(host)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
try:
|
|
|
|
url = xml.find("media").find("item").find("playlist").find("stream").find("format").find("substream").text
|
|
|
|
except AttributeError:
|
|
|
|
log.error("Can't find video file")
|
|
|
|
sys.exit(2)
|
2013-09-04 14:59:52 +02:00
|
|
|
live = xml.find("media").find("item").find("playlist").find("stream").attrib["isLive"]
|
|
|
|
if live == "true":
|
|
|
|
options.live = True
|
2013-01-17 00:21:47 +01:00
|
|
|
data = get_http_data(url)
|
|
|
|
xml = ET.XML(data)
|
|
|
|
server = xml.find("head").find("meta").attrib["base"]
|
|
|
|
streams = xml.find("body").find("switch")
|
2013-12-30 01:35:08 +01:00
|
|
|
if is_py2_old:
|
2013-01-17 00:21:47 +01:00
|
|
|
sa = list(streams.getiterator("video"))
|
|
|
|
else:
|
|
|
|
sa = list(streams.iter("video"))
|
|
|
|
|
2014-04-21 18:24:26 +02:00
|
|
|
for i in sa:
|
|
|
|
options.other = "-y '%s'" % i.attrib["src"]
|
|
|
|
yield RTMP(options, server, i.attrib["system-bitrate"])
|