1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00
svtplay-dl/lib/svtplay_dl/service/radioplay.py

26 lines
737 B
Python
Raw Normal View History

2014-03-19 22:44:58 +01:00
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
2014-06-07 20:43:40 +02:00
import copy
2019-08-25 00:40:39 +02:00
import json
import re
2013-03-10 12:40:07 +01:00
from svtplay_dl.error import ServiceError
2019-08-25 00:40:39 +02:00
from svtplay_dl.fetcher.http import HTTP
from svtplay_dl.service import Service
2013-03-10 12:40:07 +01:00
2015-09-15 20:10:32 +02:00
class Radioplay(Service):
2019-08-25 00:27:31 +02:00
supported_domains = ["radioplay.se"]
2013-03-10 12:40:07 +01:00
def get(self):
data = self.get_urldata()
match = re.search(r"RP.vcdData = ({.*});</script>", data)
2013-03-10 12:40:07 +01:00
if match:
data = json.loads(match.group(1))
for i in list(data["station"]["streams"].keys()):
2018-05-13 13:06:45 +02:00
yield HTTP(copy.copy(self.config), data["station"]["streams"][i], i)
2013-03-10 12:40:07 +01:00
else:
yield ServiceError("Can't find stream info")
2018-02-26 00:02:53 +01:00
return