mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 21:54:17 +01:00
aftonbladet: request fixes
This commit is contained in:
parent
1bd7410cc2
commit
c2ae9e99e7
@ -38,7 +38,7 @@ class Aftonbladet(Service):
|
|||||||
|
|
||||||
if not options.live:
|
if not options.live:
|
||||||
dataurl = "http://aftonbladet-play-metadata.cdn.drvideo.aptoma.no/video/%s.json" % videoId
|
dataurl = "http://aftonbladet-play-metadata.cdn.drvideo.aptoma.no/video/%s.json" % videoId
|
||||||
data = self.http.get(dataurl)
|
data = self.http.get(dataurl).content
|
||||||
data = json.loads(data)
|
data = json.loads(data)
|
||||||
videoId = data["videoId"]
|
videoId = data["videoId"]
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ class Aftonbladet(Service):
|
|||||||
else:
|
else:
|
||||||
plist = "http://%s/%s/%s" % (address, path, hls["filename"])
|
plist = "http://%s/%s/%s" % (address, path, hls["filename"])
|
||||||
|
|
||||||
streams = hlsparse(self.http.get(plist).text)
|
streams = hlsparse(plist, self.http.get(plist).text)
|
||||||
if streams:
|
if streams:
|
||||||
for n in list(streams.keys()):
|
for n in list(streams.keys()):
|
||||||
yield HLS(copy.copy(options), streams[n], n)
|
yield HLS(copy.copy(options), streams[n], n)
|
||||||
|
Loading…
Reference in New Issue
Block a user