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-01-17 00:21:47 +01:00
|
|
|
import re
|
2014-02-05 23:15:19 +01:00
|
|
|
import json
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2013-04-21 12:44:31 +02:00
|
|
|
from svtplay_dl.service import Service
|
2018-03-13 00:33:39 +01:00
|
|
|
from svtplay_dl.utils.text import decode_html_entities
|
2015-09-06 14:19:10 +02:00
|
|
|
from svtplay_dl.error import ServiceError
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2015-09-15 20:10:32 +02:00
|
|
|
|
2017-09-01 20:53:04 +02:00
|
|
|
class Aftonbladettv(Service):
|
2018-06-03 12:49:25 +02:00
|
|
|
supported_domains = ["svd.se"]
|
2013-01-17 00:21:47 +01:00
|
|
|
|
2015-12-26 11:46:14 +01:00
|
|
|
def get(self):
|
2015-08-30 00:06:20 +02:00
|
|
|
data = self.get_urldata()
|
2014-12-22 17:41:40 +01:00
|
|
|
|
2016-10-06 22:46:40 +02:00
|
|
|
match = re.search('data-player-config="([^"]+)"', data)
|
2013-01-17 00:21:47 +01:00
|
|
|
if not match:
|
2017-06-05 13:14:22 +02:00
|
|
|
match = re.search('data-svpPlayer-video="([^"]+)"', data)
|
|
|
|
if not match:
|
|
|
|
yield ServiceError("Can't find video info")
|
|
|
|
return
|
|
|
|
data = json.loads(decode_html_entities(match.group(1)))
|
2018-05-21 00:56:22 +02:00
|
|
|
streams = hlsparse(self.config, self.http.request("get", data["streamUrls"]["hls"]), data["streamUrls"]["hls"], output=self.output)
|
2018-05-08 22:48:55 +02:00
|
|
|
for n in list(streams.keys()):
|
|
|
|
yield streams[n]
|
2017-09-01 20:53:04 +02:00
|
|
|
|
2018-01-30 20:11:37 +01:00
|
|
|
|
2017-09-01 20:53:04 +02:00
|
|
|
class Aftonbladet(Service):
|
2018-06-03 12:49:25 +02:00
|
|
|
supported_domains = ["aftonbladet.se", "tv.aftonbladet.se"]
|
2017-09-01 20:53:04 +02:00
|
|
|
|
|
|
|
def get(self):
|
|
|
|
data = self.get_urldata()
|
|
|
|
|
|
|
|
match = re.search('window.FLUX_STATE = ({.*})</script>', data)
|
|
|
|
if not match:
|
|
|
|
yield ServiceError("Can't find video info")
|
|
|
|
return
|
|
|
|
|
2018-01-25 22:35:02 +01:00
|
|
|
try:
|
|
|
|
janson = json.loads(match.group(1))
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
yield ServiceError("Can't decode api request: {0}".format(match.group(1)))
|
|
|
|
return
|
|
|
|
|
|
|
|
videos = self._get_video(janson)
|
2018-01-25 22:28:07 +01:00
|
|
|
for i in videos:
|
|
|
|
yield i
|
|
|
|
|
2018-01-25 22:35:02 +01:00
|
|
|
def _get_video(self, janson):
|
2018-06-03 12:49:25 +02:00
|
|
|
collections = janson["collections"]
|
|
|
|
for n in list(collections.keys()):
|
|
|
|
contents = collections[n]["contents"]["items"]
|
|
|
|
for i in list(contents.keys()):
|
|
|
|
if "type" in contents[i] and contents[i]["type"] == "video":
|
|
|
|
streams = hlsparse(self.config, self.http.request("get", contents[i]["videoAsset"]["streamUrls"]["hls"]),
|
|
|
|
contents[i]["videoAsset"]["streamUrls"]["hls"], output=self.output)
|
|
|
|
for key in list(streams.keys()):
|
|
|
|
yield streams[key]
|