1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

svtplay: they removed playertype from jsonfile.

This commit is contained in:
Johan Andersson 2013-05-06 12:17:46 +02:00
parent f7760ee640
commit 49a92b98f8

View File

@ -46,15 +46,15 @@ class Svtplay(Service):
streams = {}
streams2 = {} #hack..
for i in data["video"]["videoReferences"]:
if options.hls and i["playerType"] == "ios":
if options.hls and i["url"][len(i["url"])-4:] == "m3u8":
stream = {}
stream["url"] = i["url"]
streams[int(i["bitrate"])] = stream
elif not options.hls and i["playerType"] == "flash":
elif not options.hls and i["url"][len(i["url"])-3:] == "f4m":
stream = {}
stream["url"] = i["url"]
streams[int(i["bitrate"])] = stream
if options.hls and i["playerType"] == "flash":
if options.hls and i["url"][len(i["url"])-3:] == "f4m":
stream = {}
stream["url"] = i["url"]
streams2[int(i["bitrate"])] = stream