Merge branch 'yt-dlp:master' into vidio-live

This commit is contained in:
MinePlayersPE 2021-08-24 07:54:05 +07:00 committed by GitHub
commit a70f889927
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'):