Live data from Hacker News

Youtube-dl: Command-line program to download videos

github.com

161–170 of 253 posts

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

#161

The elephant in the room is obviously that this is probably illegal under DMCA.

I think it's already been ruled (at least in Europe), that it isn't illegal to download from public streaming platform since "streaming" and "downloading" are the same thing.

I'll go check.

Edit: After checking, yes, of course as long as it's for personal use. It's against youtube TOS, but if the TOS is against the law...

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

#162

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.

Your comment made me think of a web portal for uploading videos, so the content creator uploads once, and selects what content platforms he wishes to share it with. The people behinnd the portal could have a sign-up page so that any platforms that wish to host a non-exclusive copy can sign up in order for uploaders to be able to select them as well. This could potentially cause the portal hosters (internet archive?)…

This would be indeed nice. Which means, obviously, that they would be immediately buried in lawsuits. Sure, they would be in the right, which would make them happy after they're broke.

(Cynic, who me?)

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

#163
post #62

Earlier quoted context omitted.

> 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. How did you do that? I would really like to have that setup also.

I used this extension: https://addons.mozilla.org/en-US/firefox/addon/open-with/ mpv can easily be configured to open full screen on a specific screen.

Thanks, I will take a look at that extension.

After reading the documentation for mpv I found the options --screen= and --fs-screen= these are used for selecting a specific screen.

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

#164

Earlier quoted context omitted.

...and specify to only grab the videos as mp3's to download that perfect song/mix playlist!

Aspiring DJs do this, then play out the files they got from youtube-dl via Serato or whatever, then every other minimally competent DJ in the room immediately knows what’s happening based on how obviously shit it sounds. Practice mixing in headphones and playing room scale PA are two different ballgames, and when amplified, any youtube-dl format is as obvious to me as a file being ripped from source vinyl. YouTube do…

> any youtube-dl format is as obvious to me as a file being ripped from source vinyl Since YT now encodes sound tracks in Opus 160 kbps, if upload was in any decent quality, it will be downloaded in it too.

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

#165

Earlier quoted context omitted.

Not everyone has fast enough bandwidth to watch live videos. Many people rely on downloaders to actually watch the video.

But they don't download the ads, so I doubt they matter very much as far as google is concerned

You can actually download the ads with YouTube-dl... I believe it's YouTube only and still named as 'experimental', but theoretically it could be a default to appease the big G.

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

#166
I am not sure if this official version of a Youtube is available everywhere. This will allow you to download youtube videos and even share them without the internet.

https://play.google.com/store/apps/details?id=com.google.and...

Youtube for Kids is another app which is kid-friendly

https://play.google.com/store/apps/details?id=com.google.and...

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

#167

Earlier quoted context omitted.

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.

Youtube-dl has lots of GUI frontends and is embedded in easy to use Android apps.

I don't use the Play Store but a friend recently asked me for a youtube-dl frontend for Android (using other words), care to name some?

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

#169

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.

This is the classic cat-and-mouse game. We are pretty good at it by now.

Are we?

When was the last widely available iOS jailbreak available? The last Xbox One one? PS4? Android bootloaders?

Youtube is a different beast, of course, but that's why the powers that be pushed EME down our throat (and maybe it doesn't yet but it WILL require protected media paths and stuff in the future). Once EME is reasonably well done and prevalent -- we'll have to download youtube through the analog hole.

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

#170

Earlier quoted context omitted.

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 }

What if you have "&& rm -rf /" in your clipboard and forget about it?

  $ mpv "&& rm -rf /"
  Playing: && rm -rf /
  [file] Cannot open file '&& rm -rf /': No such file or directory
  Failed to open && rm -rf /.
Post reply on HN