[Vidio] Make livestream stream_url extraction non-fatal

stream_token_url sometimes gets duplicated to stream_url, and stream_url seems legacy anyway
pull/6107/head
MyNey 1 year ago committed by GitHub
parent 37e325b92f
commit ea3acc6a08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save