mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-24 12:15:40 +01:00
79 lines
2.6 KiB
Python
79 lines
2.6 KiB
Python
# 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
|
|
import json
|
|
import copy
|
|
|
|
from svtplay_dl.service import Service
|
|
from svtplay_dl.utils import get_http_data, decode_html_entities
|
|
from svtplay_dl.log import log
|
|
from svtplay_dl.fetcher.hls import HLS, hlsparse
|
|
|
|
class Aftonbladet(Service):
|
|
supported_domains = ['tv.aftonbladet.se']
|
|
|
|
def get(self, options):
|
|
error, data = self.get_urldata()
|
|
if error:
|
|
log.error("Cant download page")
|
|
return
|
|
|
|
if self.exclude(options):
|
|
return
|
|
|
|
match = re.search('data-aptomaId="([-0-9a-z]+)"', data)
|
|
if not match:
|
|
match = re.search('data-player-config="([^"]+)"', data)
|
|
if not match:
|
|
log.error("Can't find video info")
|
|
return
|
|
janson = json.loads(decode_html_entities(match.group(1)))
|
|
videoId = janson["videoId"]
|
|
else:
|
|
videoId = match.group(1)
|
|
match = re.search(r'data-isLive="(\w+)"', data)
|
|
if not match:
|
|
log.error("Can't find live info")
|
|
return
|
|
if match.group(1) == "true":
|
|
options.live = True
|
|
|
|
if not options.live:
|
|
dataurl = "http://aftonbladet-play-metadata.cdn.drvideo.aptoma.no/video/%s.json" % videoId
|
|
error, data = get_http_data(dataurl)
|
|
if error:
|
|
log.error("Cant get vidoe info")
|
|
return
|
|
data = json.loads(data)
|
|
videoId = data["videoId"]
|
|
|
|
streamsurl = "http://aftonbladet-play-static-ext.cdn.drvideo.aptoma.no/actions/video/?id=%s&formats&callback=" % videoId
|
|
error, data = get_http_data(streamsurl)
|
|
if error:
|
|
log.error("Cant download video info")
|
|
return
|
|
streams = json.loads(data)
|
|
hlsstreams = streams["formats"]["hls"]
|
|
if "level3" in hlsstreams.keys():
|
|
hls = hlsstreams["level3"]
|
|
else:
|
|
hls = hlsstreams["akamai"]
|
|
if "csmil" in hls.keys():
|
|
hls = hls["csmil"][0]
|
|
else:
|
|
hls = hls["m3u8"][0]
|
|
address = hls["address"]
|
|
path = hls["path"]
|
|
|
|
for i in hls["files"]:
|
|
if "filename" in i.keys():
|
|
plist = "http://%s/%s/%s/master.m3u8" % (address, path, i["filename"])
|
|
else:
|
|
plist = "http://%s/%s/%s" % (address, path, hls["filename"])
|
|
|
|
streams = hlsparse(plist)
|
|
if streams:
|
|
for n in list(streams.keys()):
|
|
yield HLS(copy.copy(options), streams[n], n)
|