From ea3acc6a089d56d163be6dd92f8376486b545298 Mon Sep 17 00:00:00 2001 From: MyNey <20515340+MinePlayersPE@users.noreply.github.com> Date: Sat, 28 Jan 2023 21:49:59 +0700 Subject: [PATCH] [Vidio] Make livestream stream_url extraction non-fatal stream_token_url sometimes gets duplicated to stream_url, and stream_url seems legacy anyway --- yt_dlp/extractor/vidio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/vidio.py b/yt_dlp/extractor/vidio.py index 770aa284d..33b3464cf 100644 --- a/yt_dlp/extractor/vidio.py +++ b/yt_dlp/extractor/vidio.py @@ -290,7 +290,7 @@ class VidioLiveIE(VidioBaseIE): pass if stream_meta.get('stream_url'): formats.extend(self._extract_m3u8_formats( - stream_meta['stream_url'], display_id, 'mp4', 'm3u8_native')) + stream_meta['stream_url'], display_id, 'mp4', 'm3u8_native', fatal=False)) return { 'id': video_id,