Live data from Hacker News

Youtube-dl: Command-line program to download videos

github.com

121–130 of 253 posts

Re: Youtube-dl: Command-line program to download videos

#121
post #18

Since letting kids alone on youtube, is clusterf* of a nightmare, this is a godsend tool to archive approved channels to a local media server. This config file (with separate channel-list- and archive-files) template found here, has proven quite useful to me combined with some minimal batch job: https://www.reddit.com/r/DataHoarder/comments/858ny5/my_yout...

>Since letting kids alone on youtube, is clusterf* of a nightmare,

Could you have caked on more hyperbole? Yes, let's just let kids search the Internet and see what they come up with.

Re: Youtube-dl: Command-line program to download videos

#122

I feel like the first rule of youtube-dl is not to talk about youtube-dl. I keep expecting Google (and all the other sites it works on) to start taking active measures to disable it. At some point YouTube is going to require an EME module to play even "free" videos.

Not everyone has fast enough bandwidth to watch live videos.

Many people rely on downloaders to actually watch the video.

Re: Youtube-dl: Command-line program to download videos

#124
post #7

When I want to download a video from a site I always think “it would be great if youtube-dl worked with this niche website, but I think it’s too specific”, then I try and it works, I’m always surprised.

Even works with twitch which I find really handy

Re: Youtube-dl: Command-line program to download videos

#125

I feel like the first rule of youtube-dl is not to talk about youtube-dl. I keep expecting Google (and all the other sites it works on) to start taking active measures to disable it. At some point YouTube is going to require an EME module to play even "free" videos.

While I agree with you in principle (and have used a very similar setup for many years), I don't think HN is pro-DRM/IP enough to worry. At some point YouTube is going to require an EME module to play even "free" videos. ...which will be cracked within days if not hours.

> which will be cracked within days if not hours.

Netflix requires an EME module since quite some time, and I'm not aware of any successful cracks.

Re: Youtube-dl: Command-line program to download videos

#126
post #18

Since letting kids alone on youtube, is clusterf* of a nightmare, this is a godsend tool to archive approved channels to a local media server. This config file (with separate channel-list- and archive-files) template found here, has proven quite useful to me combined with some minimal batch job: https://www.reddit.com/r/DataHoarder/comments/858ny5/my_yout...

>Since letting kids alone on youtube, is clusterf* of a nightmare, Could you have caked on more hyperbole? Yes, let's just let kids search the Internet and see what they come up with.

I wouldn't call it hyperbole at all once you learn about Elsagate.

Re: Youtube-dl: Command-line program to download videos

#127

I feel like the first rule of youtube-dl is not to talk about youtube-dl. I keep expecting Google (and all the other sites it works on) to start taking active measures to disable it. At some point YouTube is going to require an EME module to play even "free" videos.

I think command line utilities will usually be the last to receive active counter measures as they are generally considered to be used only by geeks which constitute a negligible percent of consumers.

Re: Youtube-dl: Command-line program to download videos

#128

Earlier quoted context omitted.

Important and desirable media is almost always available from more than one source. If not, then Sometimes, it's as simple as asking the producer to upload to your preferred streaming endpoint.

What constitutes "important and desirable media" is extremely personal and subjective, and the producer will not always be available to respond to your request. Here's an example of something that is very important and desirable to me but doesn't exist anywhere else on the internet. https://www.youtube.com/watch?v=Fd_p2B8ReqE

I agree with you overall, but the album actually does exist here: https://yadi.sk/d/SMKn5Af43LitRc. At 320 kbps, it's a little higher quality than YouTube.

By the way, Diamond Harbour is fantastic. What other music do you love?

Re: Youtube-dl: Command-line program to download videos

#129

I presume this is only for the occasional thing that people are afraid will disappear from youtube or is there some other reason for downloading that I'm missing?

I downloaded a bunch of videos for watching on the train when my commute was 3 hours and the 4G connection was absolute shit. Youtube-dl saved my sanity.

Re: Youtube-dl: Command-line program to download videos

#130

The most useful part of youtube-dl is that it works with mpv, so you just pass a URL on the command line and MPV just plays the video in it. I have two monitors, so I put a button on my Firefox toolbar to launch MPV with the current URL, and configured MPV to start fullscreen on the second monitor immediately and quit when done. It's made my video-watching experience on the web an order of magnitude better.

I use a shell wrapper for mpv that takes the URL from the clipboard when no arguments are given:

  mpv() {
    if [ $# -eq 0 ]; then
      env mpv "$(xsel -b)"
    else
      env mpv "$@"
    fi
  }
Post reply on HN