mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
from __future__ import absolute_import
|
|
import re
|
|
import copy
|
|
import xml.etree.ElementTree as ET
|
|
|
|
from svtplay_dl.service import Service
|
|
from svtplay_dl.error import UIException
|
|
from svtplay_dl.log import log
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
|
from svtplay_dl.utils import get_http_data, is_py2_old
|
|
from svtplay_dl.utils.urllib import unquote_plus
|
|
|
|
class ExpressenException(UIException):
|
|
pass
|
|
|
|
class Expressen(Service):
|
|
supported_domains = ['expressen.se']
|
|
|
|
def get(self, options):
|
|
error, data = self.get_urldata()
|
|
if error:
|
|
log.error("Can't get the page")
|
|
return
|
|
match = re.search("xmlUrl=([^ ]+)\" ", data)
|
|
if match:
|
|
xmlurl = unquote_plus(match.group(1))
|
|
else:
|
|
match = re.search(
|
|
r"moviesList: \[\{\"VideoId\":\"(\d+)\"",
|
|
self.get_urldata()[1])
|
|
if not match:
|
|
log.error("Can't find video id")
|
|
return
|
|
vid = match.group(1)
|
|
xmlurl = "http://www.expressen.se/Handlers/WebTvHandler.ashx?id=%s" % vid
|
|
error, data = get_http_data(xmlurl)
|
|
|
|
xml = ET.XML(data)
|
|
live = xml.find("live").text
|
|
if live != "0":
|
|
options.live = True
|
|
ss = xml.find("vurls")
|
|
if is_py2_old:
|
|
sa = list(ss.getiterator("vurl"))
|
|
else:
|
|
sa = list(ss.iter("vurl"))
|
|
|
|
for i in sa:
|
|
options2 = copy.copy(options)
|
|
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
|
|
streams = hlsparse(ipadurl)
|
|
for n in list(streams.keys()):
|
|
yield HLS(copy.copy(options), streams[n], n)
|