alt

Corriger l'erreur HTTP Error 429: Too Many Requests avec youtube-dl

Si vous avez cette erreur avec youtube-dl

 ERROR: Unable to download webpage: HTTP Error 429: Too Many Requests (caused by HTTPError());
 please report this issue on https://yt-dl.org/bug .
 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.

Il suffit simplement de de rajouter l'option --force-ipv4 dans votre commande :

 $ youtube-dl  -o "%(title)s.%(ext)s" --force-ipv4 

Pour crée un alias allez dans votre .bashrc et rajouter :

 alias ytdl='youtube-dl  -o "%(title)s.%(ext)s" --extract-audio --audio-format mp3 -k --force-ipv4  --rm-cache-dir $1'
 alias ytdlV='youtube-dl  -o "%(title)s.%(ext)s" --force-ipv4 $1'

La première ligne download et garde la vidèo et le mp3.
La seconde ligne download et garde que la vidéo.
Bonus: --rm-cache-dir efface le cache pour la vidéo

 $ youtube-dl --rm-cache-dir

Plus qu'a taper dans votre terminal :

 $ ytdlV https://www.youtube.com/watch?v=7Uexuyy_HL8

résultat:

 $ ytdlV https://www.youtube.com/watch?v=7Uexuyy_HL8
 [youtube] 7Uexuyy_HL8: Downloading webpage
 [youtube] 7Uexuyy_HL8: Downloading video info webpage
 [youtube] 7Uexuyy_HL8: Extracting video information
 [download] Destination: Stupeflip - The Antidote.f248.webm
 [download] 100% of 1.50MiB in 00:00
 [download] Destination: Stupeflip - The Antidote.f251.webm
 [download] 100% of 3.24MiB in 00:00
 [ffmpeg] Merging formats into "Stupeflip - The Antidote.webm"
 Deleting original file Stupeflip - The Antidote.f248.webm (pass -k to keep)
 Deleting original file Stupeflip - The Antidote.f251.webm (pass -k to keep)

by 🅴🆁🆁🅴🆄🆁32
🅴🅲🅷🔵🆂🆈🆂🆃🅴🅼