I hope this is the proper place to ask, though probably only indirectly on topic for this community.
What I am looking for is a way or tool to extract from a YouTube playlist the information which of my saved videos (usually very niche music from about a decade ago) are no longer available in it (so that I might procure them elsewhere).
With google being google, and the condensed information of “x videos are no longer available” that is displayed, I am fairly sure the information isnt gone gone, just hidden from the user.
Is there a way to get at that info?
Thanks in advance
You can get all the IDs using yt-dlp
yt-dlp --flat-playlist --print id <playlist>
Assuming you’re on linux, you can add
at the end to save the list to a file. ids_all.txt
You can also add
--compat-options no-youtube-unavailable-videos
to get only the list of available videos instead and then, again assuming you’re on linux, do
diff ids_all.txt ids_available.txt
to get the odd ones out. That’s the simplest I could come up with. You’ll have to hope you can use the wayback machine, or a good old exact search to turn up what video that ID actually referred to
>
anddiff
also work on the latest version of Powershell, so all of your instructions should work on both Linux and Windows.Ah, nice! I tried to avoid powershell while on windows, so don’t know much about it.
What I’ve done in the past is to copy the URL of the unavailable video (if it’s still accessible via the playlist entry, sometimes it isn’t which is annoying) and feed it into the Wayback Machine in the hopes that it got archived at some point. The video stream isn’t usually available that way, but at least the page title sometimes is, and then I can search for other versions of it.
Run yt-dlp against the playlist and look for errors? You can probably filter or script it too, or extract the list items, iterate over them individually, and look for a nonzero exit code.
Thanks guys, let’s hope I can figure it out (have only used the DL with GUI)