mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
Merge branch 'yt-dlp:master' into vidio-live
This commit is contained in:
commit
a70f889927
|
@ -95,7 +95,7 @@ def _get_suitable_downloader(info_dict, params, default):
|
|||
return ed
|
||||
|
||||
if protocol == 'http_dash_segments':
|
||||
if info_dict.get('is_live') and external_downloader.lower() != 'native':
|
||||
if info_dict.get('is_live') and (external_downloader or '').lower() != 'native':
|
||||
return FFmpegFD
|
||||
|
||||
if protocol in ('m3u8', 'm3u8_native'):
|
||||
|
|
Loading…
Reference in a new issue