-1

In the previous YouTube version there was an option to get the first YouTube video as follows:

https://www.youtube.com/channel/MrBeast6000/videos?view=0&sort=da&flow=grid // MrBeast6000 channel Name

But the new version does not support this method. Is there any other way to get the first video of any YouTube channel?

Benjamin Loison
  • 3,782
  • 4
  • 16
  • 33
santosh
  • 742
  • 8
  • 19

2 Answers2

3

Sadly not as far as I know, at least not nearly as easily as it once was.

The only solution is to retrive ALL videos from a channel and then locally revert the most recent to oldest videos.

Hope this helps!

Liam H.
  • 66
  • 5
-1

Using youtube-dl or yt-dlp (a fork of the former, my current go-to)

You can use the following command-line expression to pull the first video:

yt-dlp https://www.youtube.com/<CHANNEL-ID> --playlist-reverse --max-downloads 1

Haven't found a way to do that with the Youtube UI.

jlo
  • 2,157
  • 2
  • 17
  • 23