Compare commits

...

2 Commits

Author SHA1 Message Date
MyNey
e65777687d
Merge ea3acc6a08 into da252d9d32 2024-11-18 09:35:59 +05:30
MyNey
ea3acc6a08
[Vidio] Make livestream stream_url extraction non-fatal
stream_token_url sometimes gets duplicated to stream_url, and stream_url seems legacy anyway
2023-01-28 21:49:59 +07:00

View File

@ -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,