9

in the past I have downloaded Youtube's playlists with youtube-dl without any problem. However, now it downloads 0 videos. Could it have something to do with RIAA's DMCA takedown? Any suggestion or solution? The code I usually use is

youtube-dl -i -f mp4 --write-auto-sub --yes-playlist --output './%(title)s.%(ext)s' UUdp4_l1vPmpN-gDbUwhaRUQ

I have tried with the web URL or the playlist ID, both give me this result:

[youtube:playlist] UUdp4_l1vPmpN-gDbUwhaRUQ: Downloading webpage
[download] Downloading playlist: UUdp4_l1vPmpN-gDbUwhaRUQ
[youtube:playlist] playlist UUdp4_l1vPmpN-gDbUwhaRUQ: Downloading 0 videos
[download] Finished downloading playlist: UUdp4_l1vPmpN-gDbUwhaRUQ

Also, I have uninstalled/updated youtube-dl (just in case) without improve. Thank you in advance,

4 Answers4

11

It is an issue with youtube-dl, however the youtube-dlc fork has already fixed it.

You can download directly from GitHub or else download it with pip:

python3 -m pip install --upgrade youtube-dlc

UPDATE: youtube-dl has been restored.

LucaTNT
  • 126
  • 1
  • 4
0

I was on windows and with youtube-dl -U parameter updated version suddenly did not work on playlists. Then I manually loaded the update directly from http://ytdl-org.github.io/youtube-dl/download.html. Manually loaded had different size( 7894k ) but same version. 2020.11.24 Update by -U paramater had size 7842k. Thing was for example that command line updated -U version did not understand playlist title: '%(playlist_title)s/ In the target directory playlist name was was always NA. Immediately all started work like old days with manually loaded version.

Tonecops
  • 127
  • 9
  • I am glad it worked. It seems that since Github [stood up for developers] [1] this problem is solved. I could download any playlist with: youtube-dl --yes-playlist 'URL' [1]: https://github.blog/2020-11-16-standing-up-for-developers-youtube-dl-is-back/ – Ignasi Piqué Muntané Nov 26 '20 at 15:40
0

I had the same problem just now and was able to resolve it by updating the install.

sudo youtube-dl -U for linux.

Oisín Foley
  • 2,317
  • 2
  • 22
  • 29
0

youtube-dl stopped working again it looks like the response from you tube is base64 encoded

Yes
  • 1
  • 1
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Mar 23 '23 at 23:58