Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
[ZDF] Playlist extractor finds and tries to download non-video pages #16798
Comments
|
I had the same issue but the error also appeared when I didn't try to download the playlist but put all the URLs in a list:
|
|
I get the same error for single video pages download:
|
I've verified and I assure that I'm running youtube-dl 2018.06.19
At least skimmed through the README, most notably the FAQ and BUGS sections
Searched the bugtracker for similar issues including closed ones
Checked that provided video/audio/playlist URLs (if any) are alive and playable in a browser
Bug report (encountered problems with youtube-dl)
On the given playlist, youtube-dl identifies several downloadable items. The first of those (trailer, wilde-jahre-{100,102,104,112,114}) work fine, but https://www.zdf.de/serien/zarah-wilde-jahre/zarah-presseartikel-100.html is not actually a video but an article on the topic of the playlist (just open it). Attempting to download the complete playlist (in my case by invoking
youtube-dl --download-archive .youtube-dl-archive --no-overwrites --all-subs --write-description --write-info-json --write-annotations --write-all-thumbnails --no-progress --output '%(extractor)s/%(id)s %(title)s/%(title)s (%(format)s).%(ext)s' https://www.zdf.de/serien/zarah-wilde-jahre) successfully downloads a few videos and then fails with the same error message as if I tried to download the article directly:As a workaround, I'm using the
--ignore-errorsflag, but that should only ever be a workaround to be carefully applied and not find its way into regular workflows.Please either make the playlist extraction detect what videos are, or make the download of a single non-video item in a playlist fail gracefully when such a situation is detected.