1
0
Fork 0

Add option --throttled-rate below which video data is re-extracted

Currently only for HTTP downloads

Closes #430, workaround for https://github.com/ytdl-org/youtube-dl/issues/29326
This commit is contained in:
pukkandan 2021-06-23 04:41:09 +05:30
commit 51d9739f80
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
6 changed files with 41 additions and 6 deletions

View file

@ -2504,6 +2504,11 @@ class RejectedVideoReached(YoutubeDLError):
pass
class ThrottledDownload(YoutubeDLError):
""" Download speed below --throttled-rate. """
pass
class MaxDownloadsReached(YoutubeDLError):
""" --max-downloads limit has been reached. """
pass