Thursday, May 2, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  15] [ 0]  / answers: 1 / hits: 41752  / 3 Years ago, thu, september 16, 2021, 6:22:40

I get the following error when I try to download video using youtube-dl.



WARNING: Warning: Falling back to static signature algorithm
ERROR: unable to download video data: HTTP Error 403: Forbidden

More From » youtube-dl

 Answers
5

Have you installed via apt-get? It seems this version is outdated.
This was happening to me:



$ sudo youtube-dl -U
It looks like you installed youtube-dl with a package manager, pip, setup.py or a tarball. Please use that to update.


You can install it from official sources: https://rg3.github.io/youtube-dl/download.html



Using curl:



sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl


If you do not have curl, you can alternatively use wget:



sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl


You can also use pip:



sudo pip install --upgrade youtube_dl


You can also use Homebrew:



brew install youtube-dl

[#24176] Saturday, September 18, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
egantfis

Total Points: 406
Total Questions: 108
Total Answers: 108

Location: Austria
Member since Thu, Jan 7, 2021
3 Years ago
;