mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 20:25:41 +01:00
baa8d76551
self.get_urldata() is eqivalent to get_http_data(self.url), but also caches the data, so no additional requests are made if it is called multiple times (e.g when grabbing title or downloading thumbnail). Generic().get(url) still causes it to be fetched an extra time.
47 lines
1.4 KiB
Python
47 lines
1.4 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 sys
|
|
import re
|
|
import xml.etree.ElementTree as ET
|
|
|
|
from svtplay_dl.service import Service
|
|
from svtplay_dl.utils import get_http_data, select_quality, is_py2_old
|
|
from svtplay_dl.log import log
|
|
from svtplay_dl.fetcher.rtmp import download_rtmp
|
|
|
|
from svtplay_dl.utils.urllib import quote_plus
|
|
|
|
class Expressen(Service):
|
|
supported_domains = ['expressen.se']
|
|
|
|
def get(self, options):
|
|
match = re.search(r"xmlUrl: '(http://www.expressen.*)'", self.get_urldata())
|
|
if not match:
|
|
log.error("Can't find video file")
|
|
sys.exit(2)
|
|
url = "http://tv.expressen.se/%s/?standAlone=true&output=xml" % quote_plus(match.group(1))
|
|
url = match.group(1)
|
|
data = get_http_data(url)
|
|
xml = ET.XML(data)
|
|
ss = xml.find("vurls")
|
|
if is_py2_old:
|
|
sa = list(ss.getiterator("vurl"))
|
|
else:
|
|
sa = list(ss.iter("vurl"))
|
|
streams = {}
|
|
|
|
for i in sa:
|
|
streams[int(i.attrib["bitrate"])] = i.text
|
|
|
|
test = select_quality(options, streams)
|
|
|
|
filename = test
|
|
match = re.search(r"rtmp://([0-9a-z\.]+/[0-9]+/)(.*)", filename)
|
|
|
|
filename = "rtmp://%s" % match.group(1)
|
|
options.other = "-y %s" % match.group(2)
|
|
|
|
download_rtmp(options, filename)
|
|
|