mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 13:44:14 +01:00
svtplay: for some reason they presented the m3u8 file as mpd
fixes: #1341
This commit is contained in:
parent
25ea769bc3
commit
028971b476
@ -111,11 +111,11 @@ class Svtplay(Service, MetadataThumbMixin):
|
||||
query = parse_qs(urlparse(i["url"]).query)
|
||||
if "alt" in query and len(query["alt"]) > 0:
|
||||
alt = self.http.get(query["alt"][0])
|
||||
if i["format"][:3] == "hls":
|
||||
if i["url"].find(".m3u8") > 0:
|
||||
streams = hlsparse(self.config, self.http.request("get", i["url"]), i["url"], output=self.output)
|
||||
if alt:
|
||||
alt_streams = hlsparse(self.config, self.http.request("get", alt.request.url), alt.request.url, output=self.output)
|
||||
elif i["format"][:4] == "dash":
|
||||
elif i["url"].find(".mpd") > 0:
|
||||
streams = dashparse(self.config, self.http.request("get", i["url"]), i["url"], output=self.output)
|
||||
if alt:
|
||||
alt_streams = dashparse(self.config, self.http.request("get", alt.request.url), alt.request.url, output=self.output)
|
||||
|
Loading…
Reference in New Issue
Block a user