diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-09-22 01:37:44 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-09-22 02:15:55 +0530 |
commit | 2fa669f759eae6d5c7e608e3ee628f9d60d03e83 (patch) | |
tree | a994bb325804ed528c04208a928cd5830ee81126 /yt_dlp/options.py | |
parent | 8ca48a1a5427040fd708f33a264c10d5d0e85fc1 (diff) | |
download | hypervideo-pre-2fa669f759eae6d5c7e608e3ee628f9d60d03e83.tar.lz hypervideo-pre-2fa669f759eae6d5c7e608e3ee628f9d60d03e83.tar.xz hypervideo-pre-2fa669f759eae6d5c7e608e3ee628f9d60d03e83.zip |
[docs] Misc improvements
Closes #4987, Closes #4906, Closes #4919, Closes #4977, Closes #4979
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 9ad48486e..861bbf786 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1820,14 +1820,14 @@ def create_parser(): val.replace(r'\,', ',').strip() for val in re.split(r'(?<!\\),', vals)]) extractor.add_option( '--extractor-args', - metavar='KEY:ARGS', dest='extractor_args', default={}, type='str', + metavar='IE_KEY:ARGS', dest='extractor_args', default={}, type='str', action='callback', callback=_dict_from_options_callback, callback_kwargs={ 'multiple_keys': False, 'process': lambda val: dict( _extractor_arg_parser(*arg.split('=', 1)) for arg in val.split(';')) }, help=( - 'Pass these arguments to the extractor. See "EXTRACTOR ARGUMENTS" for details. ' + 'Pass ARGS arguments to the IE_KEY extractor. See "EXTRACTOR ARGUMENTS" for details. ' 'You can use this option multiple times to give arguments for different extractors')) extractor.add_option( '--youtube-include-dash-manifest', '--no-youtube-skip-dash-manifest', |