1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 12:15:40 +01:00
svtplay-dl/lib/svtplay_dl/service/sr.py

41 lines
1.3 KiB
Python
Raw Normal View History

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 -*-
# pylint has issues with urlparse: "some types could not be inferred"
# pylint: disable=E1103
from __future__ import absolute_import
import json
import re
2014-06-07 20:43:40 +02:00
import copy
2014-03-19 22:58:40 +01:00
from svtplay_dl.utils.urllib import quote_plus
from svtplay_dl.service import Service, OpenGraphThumbMixin
2014-04-21 17:33:44 +02:00
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.error import ServiceError
class Sr(Service, OpenGraphThumbMixin):
supported_domains = ['sverigesradio.se']
2014-01-06 23:14:06 +01:00
def get(self, options):
2015-08-30 11:27:31 +02:00
data = self.get_urldata()
if self.exclude(options):
return
match = re.search(r'href="(/sida/[\.\/=a-z0-9&;\?]+playaudio=\d+)"', data)
if not match:
yield ServiceError("Can't find audio info")
2014-10-06 23:21:43 +02:00
return
path = quote_plus(match.group(1))
dataurl = "http://sverigesradio.se/sida/ajax/getplayerinfo?url=%s&isios=false&playertype=html5" % path
data = self.http.request("get", dataurl).content
playerinfo = json.loads(data)["playerInfo"]
for i in playerinfo["AudioSources"]:
url = i["Url"]
if not url.startswith('http'):
2014-04-21 17:33:44 +02:00
url = 'http:%s' % url
2015-01-16 21:15:05 +01:00
yield HTTP(copy.copy(options), url, i["Quality"]/1000)