youtube-dl do not working.HTTP error 429: too many requests How can i solve this problem? youtube-dl is up-to date

[youtube] lMttqRuFmL8: Downloading webpage
ERROR: Unable to download webpage: HTTP Error 429: Too Many Requests (caused by HTTPError()); please report this issue on . Make sure you are using the latest version; type youtube-dl -U to update. Be sure to call youtube-dl with the --verbose flag and include its complete output.
3

6 Answers

Using --cookies works for me.

Install the cookies.txt addon on Firefox. Export cookie.

$ youtube-dl --cookies cookies.txt 
1

In this issue, @dstftw explains that all IPv6 addresses get banned by YouTube.

So, --force-ipv4 should help. If it doesn't, the another workaround could be attaching a cookie from your browser with --cookies option.

2

Perhaps you are actually sending too many request at the given time.

The status code 429 refers to TooManyRequest. In the real scenario you are sending more than expected requests on that site.

You could try later or change your IP using a proxy or VPN.

1

Try updating youtube-dl to the latest version.

youtube-dl -U 

if installed via PIP

pip install --upgrade youtube-dl

this is mentioned in the FAQ official docs in detailed explanation

just pass cookies,

the command line should be something similar to this

youtube-dl -F --cookies=cookies.txt VIDEOURL

this solved the problem for me.

I found a new way to solve this. I don't know if it is also useful for you. Video url is like Change the url to

The whole command isyoutube-dl --proxy 127.0.0.1:1080 "" --force-ipv4 --no-check-certificate

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like