From 755cfe38252e75e199f2e39a4acdca3d25a7193c Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Sun, 13 Sep 2015 22:09:23 +0200 Subject: [PATCH] raw: send url to hlsparse --- lib/svtplay_dl/service/raw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/svtplay_dl/service/raw.py b/lib/svtplay_dl/service/raw.py index 8ed4873..b5b4bf0 100644 --- a/lib/svtplay_dl/service/raw.py +++ b/lib/svtplay_dl/service/raw.py @@ -32,7 +32,7 @@ class Raw(Service): for n in list(streams.keys()): yield streams[n] if self.url.find(".m3u8") > 0: - streams = hlsparse(self.http.request("get", self.url).text) + streams = hlsparse(self.url, self.http.request("get", self.url).text) if extention: options.output = "%s.ts" % options.output