Forums / Media / Websites

2,569 total conversations in 244 threads

+ New Thread


ALERT: HEAR YE! HEAR YE!: YouTube: UNLISTED content uploaded prior to 2017 to automatically become PRIVATE in 9 (NINE) DAYS

Last posted Jul 17, 2021 at 02:58PM EDT. Added Jul 14, 2021 at 06:20PM EDT
11 posts from 8 users

I only heard about this within the past 4 hours…

YouTube announced on June 23, 2021, that one month later, on July 23, 2021, all Unlisted videos uploaded before, and playlists created before, January 1, 2017, will automatically become Private, thus inaccessible to the general public (this includes comments). (Henceforth I'll be using "affected content" to refer to these videos and playlists.)

Channels have until July 23, 2021 (9 days from now) to manually opt-out of this upcoming change, which will keep all of their affected content left alone and still publicly accessible as it is now. After that time, channels will have to either make Public or re-upload (re-create in the case of playlists) any or all of their affected content; they will not be able to mark the original affected content Unlisted again.

As one can imagine, this will especially affect YouTube channels that have become derelict. Yet even for channels that are still active or maintained, keep in mind this change requires manual intervention to opt-out. Who knows if those channels will choose to opt-out, assuming they are aware of this change. I get the feeling this isn't widely known. For example, the official YouTube video on the matter has only about 49,000 views. Did any of you here on KYM know about this?

I can already think of videos I'm going to need to download using youtube-dl (which is where I first heard of it today). Some of them belong to active channels, but again, who knows if they are informed or not and what action they'll take.

Removing Video Responses, Annotations, and Community Captions over the years have been bad enough. But this time, they're making a change that for the first time actually impacts direct access to videos and playlists in one broad stroke. I'm disgusted. They say it's being done in the name of security… but in my eyes they have chosen to do this in a very poor manner. I'm disgusted.

The announcement on YouTube video linked below states: "These videos are not new and therefore receive less traffic, which we hope will minimize disruption." Well, it impacts me greatly, perhaps more than I realize. Some of my favorite YTPs and YTP sources are from 2009&ndash2011, they were Unlisted at upload or made Unlisted many years ago… in fact earlier this year I came across some YTPMV source I hadn't thought about for years, and I thankfully found it, Unlisted. The big kicker is, they were linked to in the description of another video… all of this on the same channel. Some of these Unlisted videos are meant to be seen, but kept Unlisted to keep their videos page from being cluttered.

And then there's the lack of visibility and notice YouTube has given this change. I'm on YouTube virtually every day. Granted, I'm no content creator there, I only visit as a guest. But why did I only hear about this today, 3 weeks after the announcement, with less than 2 weeks remaining until the change is made? Why does it seem a relative very few know about this? There is also little online press coverage: in a quick search, the only notable name I found to have covered it is The Verge. YouTube, if you're going to be this hush about such a drastic change, at least give users more time, damn it! Certainly more than a month!

YouTube does not appear to have disclosed what the security issue is in a public, conspicuous manner— which I find a bit appalling considering how negative and far-reaching the impacts of their solution are —but the most I've been able to find is in a comment on the official YouTube video of the announcement linked below. The comment, made by "Wissle", includes the following quote, without citing a source:

All unlisted videos from before 2017 have their URL ids generated from a single sequential key. So, if some ex-employee were to share that key it would be possible to generate a list of every single unlisted video. Robots could then scan all of those links and make information searchable which would effectively make every unlisted video not much different than a public video.

Of course the responsible and helpful thing to do would be to notify people of the situation and let us choose what to do with our own videos…but YouTube likes to do things the dumb way and effectively nuking millions of videos is easier than admitting to having a rather simple security flaw.

Overall, this is a low blow to all who enjoy the YouTube of yesteryear every once in a while. I hope this news spreads quickly, and reaches everyone who will want to archive their favorite Unlisted videos and playlists, especially ones that will effectively be lost to history on Friday, July 23, 2021.

(Sorry for the caps in the topic title, I couldn't write it concisely so I figure add some emphasis with the Shift key.)

Links:


  1. Update to older unlisted content – YouTube Help

  2. Changes to Unlisted videos uploaded before 2017 – YouTube Community

  3. Update to YouTube Unlisted Links

  4. Changes to Unlisted Videos Uploaded Before 2017 – YouTube
Last edited Jul 14, 2021 at 06:29PM EDT

If I didn't already download all videos I liked I would be very unhappy.
Youtube is so untrustworthy that the only surprise here is that this was announced beforehand instead of wordlessly deleting a ton of old videos somedays.

Today I have started my efforts to download unlisted videos out of a large list of YouTube links I've favorited over the years.

Here are some (admittedly technical) things for youtube-dl users to keep in mind:

  • Remember that issue #29326 has not been officially fixed yet. This means, in the middle of downloading multiple videos, you could get throttled to about 70 KiB/s or less. Whenever I've encountered this is the past, I just Ctrl-C the process and restart youtube-dl from where it left off.
  • There is no way for youtube-dl to single-out and download Unlisted videos only! An issue has only recently been opened recently regarding this, issue #29538. I have prettified and looked over the JSON file of an unlisted video (requires passing the --write-info-json option to youtube-dl), and there appears to be no information in it regarding the video's Public/Unlisted/Private status. If I find a way to determine a video's visibility before a fix is suggested on GitHub (i.e., my solution won't be a patch for youtube-dl), I'll mention it here.

I would like to once again like to thank GitHub user rebane2001's comment on issue #29326 for alluding to July 23, or else I would not have never found out about it and never passed it on to KYM.

Last edited Jul 17, 2021 at 12:40AM EDT

I think I have found a solution: there's a fork of youtube-dl called yt-dlp. It lets you include the video's availability (I called it visibility in the previous post) in the filename of the downloaded video (or to be technical, yt-dlp introduces an output template field called availability).

It may not be elegant, but if you have a lot of videos and you just want to download the Unlisted ones (for now), you can run yt-dlp on a list of URLs with --skip-download and include the availability field in the output template. Then, you can see which files have "unlisted" in their names and which don't and go from there.

Maybe there's a more efficient way to use availability, but it's late and I need to sleep.

Last edited Jul 17, 2021 at 01:29AM EDT

Steely Beamemes wrote:

Today I have started my efforts to download unlisted videos out of a large list of YouTube links I've favorited over the years.

Here are some (admittedly technical) things for youtube-dl users to keep in mind:

  • Remember that issue #29326 has not been officially fixed yet. This means, in the middle of downloading multiple videos, you could get throttled to about 70 KiB/s or less. Whenever I've encountered this is the past, I just Ctrl-C the process and restart youtube-dl from where it left off.
  • There is no way for youtube-dl to single-out and download Unlisted videos only! An issue has only recently been opened recently regarding this, issue #29538. I have prettified and looked over the JSON file of an unlisted video (requires passing the --write-info-json option to youtube-dl), and there appears to be no information in it regarding the video's Public/Unlisted/Private status. If I find a way to determine a video's visibility before a fix is suggested on GitHub (i.e., my solution won't be a patch for youtube-dl), I'll mention it here.

I would like to once again like to thank GitHub user rebane2001's comment on issue #29326 for alluding to July 23, or else I would not have never found out about it and never passed it on to KYM.

I wish you luck on your journey.

Skeletor-sm

This thread is closed to new posts.

Old threads normally auto-close after 30 days of inactivity.

Why don't you start a new thread instead?

Hi! You must login or signup first!