Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
What is the purpose of your issue?
It could be similar to: #4924 but afaik that post had no fix, this one does.
In the common downloader: https://github.com/rg3/youtube-dl/blob/master/youtube_dl/downloader/common.py#L351
The code does not sleep when a file is already downloaded, despite
sleep_intervalbeing set which is an issue on some sites, e.g NicoNico, which even when you do not download the file give you a error 503 when requesting too many videos in short time.One way to solve this would be something like:
https://github.com/DeadSix27/youtube-dl/commit/4a386648cf85511d9eb283ba488858b6a5dc2444.patch but there are probably other approaches too.