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

27 lines
827 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 -*-
# pylint has issues with urlparse: "some types could not be inferred"
# pylint: disable=E1103
2013-03-10 12:40:07 +01:00
from __future__ import absolute_import
import sys
import re
import json
from svtplay_dl.service import Service
from svtplay_dl.fetcher.http import HTTP
2013-03-10 12:40:07 +01:00
from svtplay_dl.log import log
2013-03-10 12:40:07 +01:00
class Radioplay(Service):
supported_domains = ['radioplay.se']
2013-03-10 12:40:07 +01:00
2014-01-06 23:14:06 +01:00
def get(self, options):
match = re.search(r"RP.vcdData = ({.*});</script>", self.get_urldata())
2013-03-10 12:40:07 +01:00
if match:
data = json.loads(match.group(1))
for i in list(data["station"]["streams"].keys()):
yield HTTP(options, data["station"]["streams"][i], i)
2013-03-10 12:40:07 +01:00
else:
log.error("Can't find stream info")
sys.exit(2)