aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/utils.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-08-24 05:42:45 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-08-24 05:52:00 +0530
commit6251555f1c670c66aa781bf9f29e9b5b33d90be1 (patch)
tree869fe441d4728dd995bd6199c87677ec0539191e /yt_dlp/utils.py
parent330690a214e5a9b6bebcfe9f7e46ebd8ffe77f03 (diff)
downloadhypervideo-pre-6251555f1c670c66aa781bf9f29e9b5b33d90be1.tar.lz
hypervideo-pre-6251555f1c670c66aa781bf9f29e9b5b33d90be1.tar.xz
hypervideo-pre-6251555f1c670c66aa781bf9f29e9b5b33d90be1.zip
[downloader/ffmpeg] Support for DASH manifests (experimental)
Closes #159
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r--yt_dlp/utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py
index 04c280ba3..c5fbc1c5c 100644
--- a/yt_dlp/utils.py
+++ b/yt_dlp/utils.py
@@ -4987,6 +4987,7 @@ def cli_configuration_args(argdict, keys, default=[], use_compat=True):
return [arg for args in arg_list for arg in args]
return default
+
def _configuration_args(main_key, argdict, exe, keys=None, default=[], use_compat=True):
main_key, exe = main_key.lower(), exe.lower()
root_key = exe if main_key == exe else f'{main_key}+{exe}'