From 5ad7c9868759793369531d05d884bc0dbbb16a04 Mon Sep 17 00:00:00 2001 From: Paul Wise Date: Wed, 4 Nov 2020 17:29:41 +0800 Subject: [PATCH] Add support for ABC iView HLS livestreams Various video players such as mpv/vlc can play livestreams while they are being dumped to disk by retrying after EOF. --- iview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iview.py b/iview.py index 4818db9..e7c198c 100644 --- a/iview.py +++ b/iview.py @@ -32,7 +32,7 @@ class IviewEpisodeNode(Node): def find_hls_url(self, playlist): for video in playlist: - if video["type"] == "program": + if video["type"] in ["program", "livestream"]: streams = video["streams"]["hls"] for quality in ["720", "sd", "sd-low"]: if quality in streams: -- 2.39.2