diff options
author | Emanuel Hoogeveen <55082669+ehoogeveen-medweb@users.noreply.github.com> | 2021-12-23 03:29:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-23 07:59:03 +0530 |
commit | 205a0654c00275cbdd77efd00c4f39020fd53e62 (patch) | |
tree | 3d1f117ce786d23b6059031e94a7867918dd39e5 /yt_dlp/YoutubeDL.py | |
parent | 663949f825607fc5a03a08a31a3919ed0d7bb883 (diff) |
Add option `--file-access-retries` (#2066)
Closes #517
Authored by: ehoogeveen-medweb
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 274a4a78a..3bbde9b00 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -450,8 +450,8 @@ class YoutubeDL(object): The following parameters are not used by YoutubeDL itself, they are used by the downloader (see yt_dlp/downloader/common.py): nopart, updatetime, buffersize, ratelimit, throttledratelimit, min_filesize, - max_filesize, test, noresizebuffer, retries, fragment_retries, continuedl, - noprogress, xattr_set_filesize, hls_use_mpegts, http_chunk_size, + max_filesize, test, noresizebuffer, retries, file_access_retries, fragment_retries, + continuedl, noprogress, xattr_set_filesize, hls_use_mpegts, http_chunk_size, external_downloader_args, concurrent_fragment_downloads. The following options are used by the post processors: |