1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00

svtplay: dont process hls-cmaf-full

This commit is contained in:
Johan Andersson 2022-11-21 14:06:32 +01:00
parent 2c16302f25
commit 94eb8543f7

View File

@ -110,6 +110,8 @@ class Svtplay(Service, MetadataThumbMixin):
return
for i in janson["videoReferences"]:
if i["format"] == "hls-cmaf-full":
continue
if i["url"].find(".m3u8") > 0:
yield from hlsparse(self.config, self.http.request("get", i["url"]), i["url"], self.output)
elif i["url"].find(".mpd") > 0: