2013-03-10 12:40:07 +01:00
|
|
|
from __future__ import absolute_import
|
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
import json
|
|
|
|
|
2013-04-21 13:42:33 +02:00
|
|
|
from svtplay_dl.utils.urllib import urlparse
|
2013-04-21 12:44:31 +02:00
|
|
|
from svtplay_dl.service import Service
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.utils import get_http_data
|
2013-03-10 12:40:07 +01:00
|
|
|
|
2013-03-17 19:55:19 +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
|
|
|
|
2013-03-17 19:55:19 +01:00
|
|
|
from svtplay_dl.log import log
|
2013-03-10 12:40:07 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Radioplay(Service):
|
2013-03-10 12:40:07 +01:00
|
|
|
def handle(self, url):
|
|
|
|
return "radioplay.se" in url
|
|
|
|
|
|
|
|
def get(self, options, url):
|
|
|
|
data = get_http_data(url)
|
|
|
|
match = re.search("liveStationsRedundancy = ({.*});</script>", data)
|
|
|
|
parse = urlparse(url)
|
|
|
|
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"]
|
|
|
|
base_url = m3u8_url.rsplit("/", 1)[0]
|
|
|
|
download_hls(options, m3u8_url, base_url)
|
|
|
|
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)
|