[downloader/ffmpeg] Support for DASH manifests (experimental)
Closes #159
This commit is contained in:
parent
330690a214
commit
6251555f1c
4 changed files with 16 additions and 10 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue