1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-31 22:55:18 +00:00

[downloader/ffmpeg] Support for DASH manifests (experimental)

Closes #159
This commit is contained in:
pukkandan
2021-08-24 05:42:45 +05:30
parent 330690a214
commit 6251555f1c
4 changed files with 16 additions and 10 deletions

View File

@@ -94,6 +94,10 @@ def _get_suitable_downloader(info_dict, params, default):
if ed.can_download(info_dict, external_downloader):
return ed
if protocol == 'http_dash_segments':
if info_dict.get('is_live') and external_downloader.lower() != 'native':
return FFmpegFD
if protocol in ('m3u8', 'm3u8_native'):
if info_dict.get('is_live'):
return FFmpegFD