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 re
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2014-06-26 21:13:15 +02:00
|
|
|
import xml.etree.ElementTree as ET
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
from svtplay_dl.service import Service
|
2015-09-15 20:10:32 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2014-06-26 21:13:15 +02:00
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
2015-08-30 00:06:20 +02:00
|
|
|
from svtplay_dl.utils import is_py2_old
|
2014-06-26 21:13:15 +02:00
|
|
|
from svtplay_dl.utils.urllib import unquote_plus
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Expressen(Service):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['expressen.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
if self.exclude(self.options):
|
2015-09-06 23:04:48 +02:00
|
|
|
yield ServiceError("Excluding video")
|
2014-12-22 17:41:40 +01:00
|
|
|
return
|
|
|
|
|
2014-12-08 23:07:02 +01:00
|
|
|
match = re.search("xmlUrl=([^ ]+)\" ", data)
|
2014-06-26 21:13:15 +02:00
|
|
|
if match:
|
|
|
|
xmlurl = unquote_plus(match.group(1))
|
|
|
|
else:
|
2014-07-22 09:37:57 +02:00
|
|
|
match = re.search(
|
|
|
|
r"moviesList: \[\{\"VideoId\":\"(\d+)\"",
|
2015-08-31 22:04:59 +02:00
|
|
|
self.get_urldata())
|
2014-06-26 21:13:15 +02:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find video id")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-06-26 21:13:15 +02:00
|
|
|
vid = match.group(1)
|
|
|
|
xmlurl = "http://www.expressen.se/Handlers/WebTvHandler.ashx?id=%s" % vid
|
2015-08-31 19:45:15 +02:00
|
|
|
data = self.http.request("get", xmlurl).content
|
2014-06-26 21:13:15 +02:00
|
|
|
|
|
|
|
xml = ET.XML(data)
|
|
|
|
live = xml.find("live").text
|
|
|
|
if live != "0":
|
2015-12-26 11:46:14 +01:00
|
|
|
self.options.live = True
|
2014-06-26 21:13:15 +02:00
|
|
|
ss = xml.find("vurls")
|
|
|
|
if is_py2_old:
|
|
|
|
sa = list(ss.getiterator("vurl"))
|
|
|
|
else:
|
|
|
|
sa = list(ss.iter("vurl"))
|
|
|
|
|
|
|
|
for i in sa:
|
2015-12-26 11:46:14 +01:00
|
|
|
options2 = copy.copy(self.options)
|
2014-06-26 21:13:15 +02:00
|
|
|
match = re.search(r"rtmp://([-0-9a-z\.]+/[-a-z0-9]+/)(.*)", i.text)
|
|
|
|
filename = "rtmp://%s" % match.group(1)
|
|
|
|
options2.other = "-y %s" % match.group(2)
|
|
|
|
yield RTMP(options2, filename, int(i.attrib["bitrate"]))
|
|
|
|
|
|
|
|
ipadurl = xml.find("mobileurls").find("ipadurl").text
|
2015-12-26 11:46:14 +01:00
|
|
|
streams = hlsparse(self.options, self.http.request("get", ipadurl), ipadurl)
|
2014-06-26 21:13:15 +02:00
|
|
|
for n in list(streams.keys()):
|
2015-10-04 14:37:16 +02:00
|
|
|
yield streams[n]
|