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/radioplay.py

54 lines
1.6 KiB
Python
Raw Normal View History

# 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.utils.urllib import urlparse
from svtplay_dl.service import Service
2013-03-10 12:40:07 +01:00
from svtplay_dl.fetcher.rtmp import download_rtmp
from svtplay_dl.fetcher.hls import download_hls
from svtplay_dl.fetcher.http import download_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"liveStationsRedundancy = ({.*});</script>", self.get_urldata())
2014-01-06 23:14:06 +01:00
parse = urlparse(self.url)
2013-03-10 12:40:07 +01:00
station = parse.path[1:]
streams = None
if match:
data = json.loads(match.group(1))
for i in data["stations"]:
if station == i["name"].lower().replace(" ", ""):
streams = i["streams"]
break
else:
log.error("Can't find any streams.")
sys.exit(2)
if streams:
if options.hls:
try:
m3u8_url = streams["hls"]
2014-02-08 16:08:39 +01:00
download_hls(options, m3u8_url)
2013-03-10 12:40:07 +01:00
except KeyError:
log.error("Can't find any streams.")
2013-03-24 20:31:26 +01:00
sys.exit(2)
2013-03-10 12:40:07 +01:00
else:
try:
rtmp = streams["rtmp"]
download_rtmp(options, rtmp)
except KeyError:
mp3 = streams["mp3"]
download_http(options, mp3)
else:
log.error("Can't find any streams.")
sys.exit(2)