1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 20:25:41 +01:00
svtplay-dl/lib/svtplay_dl/service/ruv.py

45 lines
1.6 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
2014-06-07 20:43:40 +02:00
import copy
2014-06-29 23:12:56 +02:00
import json
from svtplay_dl.service import Service
2014-06-29 23:12:56 +02:00
from svtplay_dl.log import log
2014-04-21 21:55:39 +02:00
from svtplay_dl.fetcher.hls import HLS, hlsparse
from svtplay_dl.fetcher.http import HTTP
class Ruv(Service):
supported_domains = ['ruv.is']
2014-01-06 23:14:06 +01:00
def get(self, options):
2015-08-30 11:27:31 +02:00
data = self.get_urldata()
if self.exclude(options):
return
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:
data = self.http.request("get", match.group(1)).content
2014-06-29 23:12:56 +02:00
match = re.search(r'punktur=\(([^ ]+)\)', data)
if match:
janson = json.loads(match.group(1))
options.live = checklive(janson["result"][1])
streams = hlsparse(self.http.request("get", janson["result"][1]).text)
2014-06-29 23:12:56 +02:00
for n in list(streams.keys()):
yield HLS(copy.copy(options), streams[n], n)
else:
match = re.search(r'<source [^ ]*[ ]*src="([^"]+)" ', self.get_urldata())
2014-06-29 23:12:56 +02:00
if not match:
2014-10-06 23:21:43 +02:00
log.error("Can't find video info for: %s", self.url)
return
if match.group(1).endswith("mp4"):
yield HTTP(copy.copy(options), match.group(1), 800)
else:
m3u8_url = match.group(1)
options.live = checklive(m3u8_url)
yield HLS(copy.copy(options), m3u8_url, 800)
2014-06-29 23:12:56 +02:00
def checklive(url):
return True if re.search("live", url) else False