mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-25 02:45:12 +00:00
[Vidio] Make livestream stream_url extraction non-fatal
stream_token_url sometimes gets duplicated to stream_url, and stream_url seems legacy anyway
This commit is contained in:
parent
37e325b92f
commit
ea3acc6a08
1 changed files with 1 additions and 1 deletions
|
@ -290,7 +290,7 @@ def _real_extract(self, url):
|
|||
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…
Reference in a new issue