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

hlsparse: get the full url to playlists

This commit is contained in:
Johan Andersson 2014-06-18 21:02:03 +02:00
parent 0b230d66b6
commit cdf9216694

View File

@ -48,7 +48,7 @@ def hlsparse(url):
for i in files:
bitrate = float(i[1]["BANDWIDTH"])/1024
streams[int(bitrate)] = i[0]
streams[int(bitrate)] = _get_full_url(i[0], url)
return streams
class HLS(VideoRetriever):