diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-29 06:49:57 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-29 06:53:36 +0530 |
commit | 0a41f331cc3e06007b8d1abe104da196c565b505 (patch) | |
tree | d3ea93ea2174459d0e813f1e0a5f59c8d64f0bf4 /yt_dlp/options.py | |
parent | e1e1ea54ae8c92b9a796ee103eb20a6b949e437f (diff) | |
download | hypervideo-pre-0a41f331cc3e06007b8d1abe104da196c565b505.tar.lz hypervideo-pre-0a41f331cc3e06007b8d1abe104da196c565b505.tar.xz hypervideo-pre-0a41f331cc3e06007b8d1abe104da196c565b505.zip |
[doc] Minor improvements
Closes #3518, Closes #3560
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 725ab89db..a62681cbc 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -814,11 +814,11 @@ def create_parser(): }, help=( 'Name or path of the external downloader to use (optionally) prefixed by ' 'the protocols (http, ftp, m3u8, dash, rstp, rtmp, mms) to use it for. ' - 'Currently supports native, %s (Recommended: aria2c). ' + f'Currently supports native, {", ".join(list_external_downloaders())}. ' 'You can use this option multiple times to set different downloaders for different protocols. ' 'For example, --downloader aria2c --downloader "dash,m3u8:native" will use ' 'aria2c for http/ftp downloads, and the native downloader for dash/m3u8 downloads ' - '(Alias: --external-downloader)' % ', '.join(list_external_downloaders()))) + '(Alias: --external-downloader)')) downloader.add_option( '--downloader-args', '--external-downloader-args', metavar='NAME:ARGS', dest='external_downloader_args', default={}, type='str', |