Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Youtube-dl Playlists Downloading Stops Running “Finished downloading playlist: playlist” error [closed]

I was happily downloading channels playlists but out of the blue youtube-dl detects any channel playlists as fully downloaded. I can download videos and playlists but no channels playlists.

Desired behavior: youtube-dl downloading all playlists of a choosen channel.

Specific problem or error: youtube-dl detects all playlists as already downloaded and it downloads 0 videos.

Code necessary to reproduce de problem:

youtube-dl -i https://www.youtube.com/c/MentalOutlaw/playlists

Result:

[youtube:playlists] MentalOutlaw: Downloading webpage
[download] Downloading playlist: Mental Outlaw
[youtube:playlists] playlist Mental Outlaw: Downloading 0 videos
[download] Finished downloading playlist: Mental Outlaw

I've tried removing yt-dl and reinstalling from another repo. Restarting computer. Tried different directories and different channels. Thing is I did it before but all of a sudden it stops doing it.

OSPop!_OS 20.04 LTS

youtube-dl version 2020.09.20
like image 724
Kalkulus Avatar asked Oct 22 '20 22:10

Kalkulus


People also ask

Can youtube-dl download a playlist?

By default, Youtube-dl will download the best available quality video. However, it is also possible to download a video or playlist at a specific quality or format.

How do I continue download from youtube-dl?

To resume download should type -c option with everything what was in the line: youtube-dl -c -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]' <some_youtube_URL>

Where are youtube-dl downloads stored?

On Windows, the user wide configuration file locations are %APPDATA%\youtube-dl\config. txt or C:\Users\<user name>\youtube-dl.

Why won’t my YouTube music playlist download?

A glitch or error of some kind might be responsible for YouTube Music not downloading all songs in the playlist or stopping mid-way. Tap on Library and select Downloads. Tap on the three-dot menu icon next to the playlist you want to remove and select Remove download. Go back to Library and under Playlists, Select the playlist you want to download.

How to download music from YouTube playlists?

Go back to Library and under Playlists, Select the playlist you want to download. Tap the menu icon and select Download. 2. Availability YouTube has a massive library of videos, and you will often find multiple versions of the same song on the platform.

How do I download or remove a playlist from my library?

Tap on Library and select Downloads. Tap on the three-dot menu icon next to the playlist you want to remove and select Remove download. Go back to Library and under Playlists, Select the playlist you want to download. Tap the menu icon and select Download. 2. Availability

How many videos can you put in a YouTube music playlist?

Felix Beuster, a product expert, notes that YouTube playlists are limited to 5000 videos. So YouTube Music playlists should have the same limitation, I assume. While that’s a generous figure, some power users might have reached the upper limit. 4. Storage Permissions Open Settings and go to Apps > Manage apps and search for and open YouTube Music.


Video Answer


3 Answers

Issue is fixed in the latest release 2020.11.18. (Related Issue: #26952)

pypi has the latest version pip install youtube_dl

like image 171
Tharindu Sathischandra Avatar answered Dec 28 '22 07:12

Tharindu Sathischandra


I had also received this message while downloading videos from private playlist (it gets updated few times a month, and I have the same script that worked for a long time), these steps helped(do not use apt as it can receive updated later than pip version):

pip3 install youtube-dl --upgrade

To install the latest version of youtube-dl, then I updated my cookies file, because they had expired

like image 45
Sviatoslav Avatar answered Dec 28 '22 08:12

Sviatoslav


I took a look at the python source, updated on GitLab. There is an extractor for each supported platform. One of them youtube.py has a class called YoutubePlaylistIE (YoutubePlaylistBaseInfoExtractor), I didn’t have time to look more deeply into the process of downloading the playlist, but whoever can already know a way.

https://gitlab.com/ytdl-org/youtube-dl/-/blob/master/youtube_dl/extractor/youtube.py

like image 44
MrR0b0T Avatar answered Dec 28 '22 08:12

MrR0b0T