-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[pluralsight] improve preventing error 429 #28712
Conversation
Improve preventing error 429 by increasing sleep timeout. The current random function can be detect if its value is 2 second.
|
The value is randomly chosen from 2 to 5 second. I have notice that if the waiting timeout is 2 second. There is error 429. After changing I have no problem. Here is the log. Maybe I mistake about it.
|
I also add |
I was about to make a pull request as well. He is right, 2-5 seconds of sleep is not enough, and the --sleep-interval won't work. This may not be the latest code, but JDownloader currently has 60seconds-2minutes minimum delay before each request. In my opinion, a larger delay like 60 seconds should be enough for now. |
* https://github.com/ytdl-org/youtube-dl: [youtube] Improve stretch extraction and fix stretched ratio calculation (closes ytdl-org#28769) [youtube:tab] Improve grid extraction (closes ytdl-org#28725) [youtube:tab] Detect series playlist on playlists page (closes ytdl-org#28723) [youtube] Add more invidious instances (ytdl-org#28706) [pluralsight] Extend anti-throttling timeout (ytdl-org#28712) [youtube] Improve URL to extractor routing (closes ytdl-org#27572, closes ytdl-org#28335, closes ytdl-org#28742)
@dstftw Unfortunately, This is still failing. I have tried increasing random wait time to
|
Please follow the guide below
x
into all the boxes [ ] relevant to your pull request (like that [x])Before submitting a pull request make sure you have:
In order to be accepted and merged into youtube-dl each piece of code must be in public domain or released under Unlicense. Check one of the following options:
What is the purpose of your pull request?
Description of your pull request and other information
Improve preventing error 429 by increasing sleep timeout.
The current random function can be detect if its value is 2 second.