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 -*-
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2014-06-29 23:12:56 +02:00
|
|
|
import json
|
2019-08-25 00:40:39 +02:00
|
|
|
import re
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2019-08-25 00:40:39 +02:00
|
|
|
from svtplay_dl.fetcher.hls import HLS
|
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
|
|
|
from svtplay_dl.fetcher.http import HTTP
|
|
|
|
from svtplay_dl.service import Service
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Ruv(Service):
|
2019-08-25 00:27:31 +02:00
|
|
|
supported_domains = ["ruv.is"]
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 11:27:31 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2014-12-08 23:07:02 +01:00
|
|
|
match = re.search(r'"([^"]+geo.php)"', data)
|
2014-06-29 23:12:56 +02:00
|
|
|
if match:
|
2015-08-31 19:45:15 +02:00
|
|
|
data = self.http.request("get", match.group(1)).content
|
2019-08-25 00:27:31 +02:00
|
|
|
match = re.search(r"punktur=\(([^ ]+)\)", data)
|
2014-06-29 23:12:56 +02:00
|
|
|
if match:
|
|
|
|
janson = json.loads(match.group(1))
|
2018-05-13 13:06:45 +02:00
|
|
|
self.config.get("live", checklive(janson["result"][1]))
|
2021-05-16 02:22:37 +02:00
|
|
|
yield from hlsparse(self.config, self.http.request("get", janson["result"][1]), janson["result"][1], output=self.output)
|
2015-09-06 14:19:10 +02:00
|
|
|
else:
|
|
|
|
yield ServiceError("Can't find json info")
|
2014-06-29 23:12:56 +02:00
|
|
|
else:
|
2015-08-30 00:06:20 +02:00
|
|
|
match = re.search(r'<source [^ ]*[ ]*src="([^"]+)" ', self.get_urldata())
|
2014-06-29 23:12:56 +02:00
|
|
|
if not match:
|
2015-11-15 12:47:28 +01:00
|
|
|
yield ServiceError("Can't find video info for: %s" % self.url)
|
2014-10-06 23:21:43 +02:00
|
|
|
return
|
2015-03-08 14:55:46 +01:00
|
|
|
if match.group(1).endswith("mp4"):
|
2019-09-06 22:49:49 +02:00
|
|
|
yield HTTP(copy.copy(self.config), match.group(1), 800, output=self.output)
|
2015-03-08 14:55:46 +01:00
|
|
|
else:
|
|
|
|
m3u8_url = match.group(1)
|
2018-05-13 13:06:45 +02:00
|
|
|
self.config.set("live", checklive(m3u8_url))
|
2018-05-21 00:56:22 +02:00
|
|
|
yield HLS(copy.copy(self.config), m3u8_url, 800, output=self.output)
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2014-06-29 23:12:56 +02:00
|
|
|
def checklive(url):
|
2018-02-26 00:02:53 +01:00
|
|
|
return True if re.search("live", url) else False
|