How could we solve the HTTP request error? Error 429, Too Many requests

陌路散爱 提交于 2021-01-27 06:41:46

问题


I was a tool called youtube-dl which is command line tool for downloading youtube videos/audios. When running the command below

youtube-dl https://youtube.com/watch?v=$1 \ --quiet --extract-audio --audio-format wav \ --output "$outname.%(ext)s

I'm encountering Error 429, Too Many requests. Any work around this.

I'm trying to download audios from audio-set dataset.


回答1:


You’re receiving the 429 Too Many Requests error message because the user has sent too many requests in a given amount of time (could be a plugin, a DDos, or something else). It’s a server telling you to please stop sending requests.

click on it



来源:https://stackoverflow.com/questions/59625386/how-could-we-solve-the-http-request-error-error-429-too-many-requests

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!