1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-28 14:14:15 +01:00
svtplay-dl/lib/svtplay_dl/service/urplay.py

65 lines
2.7 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 -*-
from __future__ import absolute_import
import re
import json
2014-01-08 23:36:57 +01:00
import sys
2014-04-03 21:09:42 +02:00
import xml.etree.ElementTree as ET
from svtplay_dl.service import Service, OpenGraphThumbMixin
2013-03-24 20:28:14 +01:00
from svtplay_dl.utils import get_http_data, subtitle_tt
2014-04-21 19:04:53 +02:00
from svtplay_dl.fetcher.rtmp import RTMP
from svtplay_dl.fetcher.hls import HLS
2014-01-08 23:36:57 +01:00
from svtplay_dl.log import log
class Urplay(Service, OpenGraphThumbMixin):
supported_domains = ['urplay.se', 'ur.se']
def __init__(self, url):
Service.__init__(self, url)
self.subtitle = None
2014-01-06 23:14:06 +01:00
def get(self, options):
match = re.search(r"urPlayer.init\((.*)\);", self.get_urldata())
if not match:
log.error("Can't find json info")
sys.exit(2)
data = match.group(1)
jsondata = json.loads(data)
self.subtitle = jsondata["subtitles"].split(",")[0]
basedomain = jsondata["streaming_config"]["streamer"]["redirect"]
http = "http://%s/%s" % (basedomain, jsondata["file_html5"])
2014-01-09 00:32:14 +01:00
hd = None
if len(jsondata["file_html5_hd"]) > 0:
http_hd = "http://%s/%s" % (basedomain, jsondata["file_html5_hd"])
hls_hd = "%s%s" % (http_hd, jsondata["streaming_config"]["http_streaming"]["hls_file"])
2014-02-02 18:22:35 +01:00
tmp = jsondata["file_html5_hd"]
match = re.search(".*(mp[34]:.*$)", tmp)
path_hd = match.group(1)
2014-01-09 00:32:14 +01:00
hd = True
hls = "%s%s" % (http, jsondata["streaming_config"]["http_streaming"]["hls_file"])
rtmp = "rtmp://%s/%s" % (basedomain, jsondata["streaming_config"]["rtmp"]["application"])
path = "mp%s:%s" % (jsondata["file_flash"][-1], jsondata["file_flash"])
2014-04-21 19:04:53 +02:00
yield HLS(options, hls, "480")
options.other = "-v -a %s -y %s" % (jsondata["streaming_config"]["rtmp"]["application"], path)
yield RTMP(options, rtmp, "480")
2014-01-09 00:32:14 +01:00
if hd:
2014-04-21 19:04:53 +02:00
yield HLS(options, hls_hd, "720")
options.other = "-v -a %s -y %s" % (jsondata["streaming_config"]["rtmp"]["application"], path_hd)
yield RTMP(options, rtmp, "720")
def get_subtitle(self, options):
if self.subtitle:
data = get_http_data(self.subtitle)
subtitle_tt(options, data)
2014-04-03 21:09:42 +02:00
def find_all_episodes(self, options):
match = re.search(r'<link rel="alternate" type="application/rss\+xml" [^>]*href="([^"]+)"',
self.get_urldata())
if match is None:
log.error("Couldn't retrieve episode list")
sys.exit(2)
url = "http://urplay.se%s" % match.group(1).replace("&amp;", "&")
xml = ET.XML(get_http_data(url))
return sorted(x.text for x in xml.findall(".//item/link"))