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 -*-
|
2016-03-27 12:49:27 +02:00
|
|
|
import json
|
2019-08-25 00:40:39 +02:00
|
|
|
import re
|
2013-02-12 19:43:37 +01:00
|
|
|
|
2018-11-18 12:26:05 +01:00
|
|
|
from svtplay_dl.error import ServiceError
|
2015-10-04 14:37:16 +02:00
|
|
|
from svtplay_dl.fetcher.hls import hlsparse
|
2019-08-25 00:40:39 +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
|
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 Expressen(Service):
|
2019-08-25 00:27:31 +02:00
|
|
|
supported_domains = ["expressen.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
|
|
|
|
2018-11-18 12:26:05 +01:00
|
|
|
match = re.search('data-article-data="([^"]+)"', data)
|
2016-03-27 12:49:27 +02:00
|
|
|
if not match:
|
2018-11-18 12:26:05 +01:00
|
|
|
yield ServiceError("Cant find video file info")
|
2016-03-27 12:49:27 +02:00
|
|
|
return
|
2018-11-18 12:26:05 +01:00
|
|
|
data = decode_html_entities(match.group(1))
|
|
|
|
janson = json.loads(data)
|
|
|
|
self.config.set("live", janson["isLive"])
|
2016-03-27 12:49:27 +02:00
|
|
|
|
2021-05-16 02:22:37 +02:00
|
|
|
yield from hlsparse(self.config, self.http.request("get", janson["stream"]), janson["stream"], output=self.output)
|