diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-07 14:19:17 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-08-07 21:41:48 +0530 |
commit | 34488702053d995aba6a0dea9995e6a8858402dd (patch) | |
tree | 0c593bb1e379dc6304ea73cdb07443ba413ac6d2 /yt_dlp/downloader/common.py | |
parent | b868936cd6d619f0e3a2c303028c132b761e6313 (diff) | |
download | hypervideo-pre-34488702053d995aba6a0dea9995e6a8858402dd.tar.lz hypervideo-pre-34488702053d995aba6a0dea9995e6a8858402dd.tar.xz hypervideo-pre-34488702053d995aba6a0dea9995e6a8858402dd.zip |
[docs] Fix some mistakes and improve doc
Diffstat (limited to 'yt_dlp/downloader/common.py')
-rw-r--r-- | yt_dlp/downloader/common.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/yt_dlp/downloader/common.py b/yt_dlp/downloader/common.py index 396521aa1..3846a7ee5 100644 --- a/yt_dlp/downloader/common.py +++ b/yt_dlp/downloader/common.py @@ -47,8 +47,11 @@ class FileDownloader(object): min_filesize: Skip files smaller than this size max_filesize: Skip files larger than this size xattr_set_filesize: Set ytdl.filesize user xattribute with expected size. - external_downloader_args: A list of additional command-line arguments for the - external downloader. + external_downloader_args: A dictionary of downloader keys (in lower case) + and a list of additional command-line arguments for the + executable. Use 'default' as the name for arguments to be + passed to all downloaders. For compatibility with youtube-dl, + a single list of args can also be used hls_use_mpegts: Use the mpegts container for HLS videos. http_chunk_size: Size of a chunk for chunk-based HTTP downloading. May be useful for bypassing bandwidth throttling imposed by |