mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-25 04:35:45 +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.
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
# ex:ts=4:sw=4:sts=4:et
|
|
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
# pylint has issues with urlparse: "some types could not be inferred"
|
|
# pylint: disable=E1103
|
|
|
|
from __future__ import absolute_import
|
|
import sys
|
|
import json
|
|
import re
|
|
|
|
from svtplay_dl.utils.urllib import urlparse, parse_qs, quote_plus
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
|
from svtplay_dl.utils import get_http_data, select_quality
|
|
from svtplay_dl.log import log
|
|
from svtplay_dl.fetcher.http import download_http
|
|
|
|
class Sr(Service, OpenGraphThumbMixin):
|
|
supported_domains = ['sverigesradio.se']
|
|
|
|
def get(self, options):
|
|
match = re.search(r'href="(/sida/[\.\/=a-z0-9&;\?]+\d+)" aria-label', self.get_urldata())
|
|
if not match:
|
|
log.error("Can't find audio info")
|
|
sys.exit(2)
|
|
path = quote_plus(match.group(1))
|
|
dataurl = "http://sverigesradio.se/sida/ajax/getplayerinfo?url=%s&isios=false&playertype=html5" % path
|
|
data = get_http_data(dataurl)
|
|
playerinfo = json.loads(data)["playerInfo"]
|
|
streams = {}
|
|
for i in playerinfo["AudioSources"]:
|
|
url = i["Url"]
|
|
if not url.startswith('http'):
|
|
i = 'http:%s' % url
|
|
streams[int(i["Quality"])] = url
|
|
|
|
test = select_quality(options, streams)
|
|
download_http(options, test)
|
|
|