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
|
2014-06-07 20:43:40 +02:00
|
|
|
import copy
|
2013-02-12 19:43:37 +01:00
|
|
|
|
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
|
2014-04-21 21:55:39 +02:00
|
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
class Ruv(Service):
|
2014-01-01 14:57:17 +01:00
|
|
|
supported_domains = ['ruv.is']
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2014-01-06 23:14:06 +01:00
|
|
|
def get(self, options):
|
2014-02-18 16:48:53 +01:00
|
|
|
data = self.get_urldata()
|
2013-01-17 00:21:47 +01:00
|
|
|
match = re.search(r'(http://load.cache.is/vodruv.*)"', data)
|
|
|
|
js_url = match.group(1)
|
|
|
|
js = get_http_data(js_url)
|
|
|
|
tengipunktur = js.split('"')[1]
|
|
|
|
match = re.search(r"http.*tengipunktur [+] '([:]1935.*)'", data)
|
|
|
|
m3u8_url = "http://" + tengipunktur + match.group(1)
|
2014-04-21 21:55:39 +02:00
|
|
|
streams = hlsparse(m3u8_url)
|
|
|
|
for n in list(streams.keys()):
|
2014-06-07 20:43:40 +02:00
|
|
|
yield HLS(copy.copy(options), streams[n], n)
|
2013-01-17 00:21:47 +01:00
|
|
|
|