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 -*-
|
2013-03-01 23:39:42 +01:00
|
|
|
from __future__ import absolute_import
|
2013-02-12 19:43:37 +01:00
|
|
|
import re
|
2013-03-03 10:58:37 +01:00
|
|
|
import json
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2014-04-03 21:09:42 +02:00
|
|
|
import xml.etree.ElementTree as ET
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-01-19 14:26:48 +01:00
|
|
|
from svtplay_dl.service import Service, OpenGraphThumbMixin
|
2014-12-08 23:07:02 +01:00
|
|
|
from svtplay_dl.utils import get_http_data
|
2014-04-21 19:04:53 +02:00
|
|
|
from svtplay_dl.fetcher.rtmp import RTMP
|
2014-04-21 21:55:39 +02:00
|
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
2014-01-08 23:36:57 +01:00
|
|
|
from svtplay_dl.log import log
|
2014-08-31 01:20:36 +02:00
|
|
|
from svtplay_dl.subtitle import subtitle
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2014-01-19 14:26:48 +01:00
|
|
|
class Urplay(Service, OpenGraphThumbMixin):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['urplay.se', 'ur.se']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2014-01-11 23:02:47 +01:00
|
|
|
def __init__(self, url):
|
|
|
|
Service.__init__(self, url)
|
|
|
|
self.subtitle = None
|
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
2014-12-08 23:07:02 +01:00
|
|
|
error, data = self.get_urldata()
|
|
|
|
if error:
|
2014-11-26 16:01:30 +01:00
|
|
|
log.error("Can't get the page")
|
|
|
|
return
|
2014-12-08 23:07:02 +01:00
|
|
|
match = re.search(r"urPlayer.init\((.*)\);", data)
|
2014-01-03 12:15:21 +01:00
|
|
|
if not match:
|
|
|
|
log.error("Can't find json info")
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2014-01-03 12:15:21 +01:00
|
|
|
data = match.group(1)
|
2013-03-03 10:58:37 +01:00
|
|
|
jsondata = json.loads(data)
|
2014-08-31 01:20:36 +02:00
|
|
|
yield subtitle(copy.copy(options), "tt", jsondata["subtitles"].split(",")[0])
|
2013-03-03 10:58:37 +01:00
|
|
|
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
|
2013-03-03 10:58:37 +01:00
|
|
|
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 21:55:39 +02:00
|
|
|
streams = hlsparse(hls)
|
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield HLS(options, streams[n], n)
|
2014-04-21 19:04:53 +02:00
|
|
|
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 21:55:39 +02:00
|
|
|
streams = hlsparse(hls_hd)
|
|
|
|
for n in list(streams.keys()):
|
2014-06-07 20:43:40 +02:00
|
|
|
yield HLS(copy.copy(options), streams[n], n)
|
2014-04-21 19:04:53 +02:00
|
|
|
options.other = "-v -a %s -y %s" % (jsondata["streaming_config"]["rtmp"]["application"], path_hd)
|
2014-06-07 20:43:40 +02:00
|
|
|
yield RTMP(copy.copy(options), rtmp, "720")
|
2014-01-11 23:02:47 +01:00
|
|
|
|
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="([^"]+)"',
|
2014-12-08 23:07:02 +01:00
|
|
|
self.get_urldata()[1])
|
2014-04-03 21:09:42 +02:00
|
|
|
if match is None:
|
|
|
|
log.error("Couldn't retrieve episode list")
|
2014-11-25 21:46:33 +01:00
|
|
|
return
|
2014-04-03 21:09:42 +02:00
|
|
|
url = "http://urplay.se%s" % match.group(1).replace("&", "&")
|
2014-12-08 23:07:02 +01:00
|
|
|
xml = ET.XML(get_http_data(url)[1])
|
2014-04-03 21:09:42 +02:00
|
|
|
|
2014-12-21 13:45:44 +01:00
|
|
|
episodes = [x.text for x in xml.findall(".//item/link")]
|
|
|
|
episodes_new = []
|
|
|
|
n = 0
|
|
|
|
for i in episodes:
|
|
|
|
if n == options.all_last:
|
|
|
|
break
|
|
|
|
episodes_new.append(i)
|
|
|
|
n += 1
|
|
|
|
return episodes_new
|