Live data from Hacker News

YouTube-dl: Open-source YouTube downloader

rg3.github.io

261–270 of 338 posts

Re: YouTube-dl: Open-source YouTube downloader

#261
post #35
post #28

The tragedy of this software (and many like it) is that despite working exactly as advertised, easily and with a lot of features, because it's a quiet open source project without any SEO rigging it will never appear in page 1 of any searches by laymen trying to download videos ("save youtube to hard drive", "download youtube videos" et al). The amount of crapware I've had to remove from family member's PCs just becau…

It's not easy because it's an command line. Not a single family member would touch this here. It's sad but understandable.

I threw this together for the less savvy

  #!/bin/bash
  clear
  youtube-dl -U
  echo " "
  echo "YouTube Downloader Script"
  echo "A video file will be created in the folder where this script is located"
  echo " "
  echo "Please paste a URL and hit [ENTER]:"
  read URL
  youtube-dl $URL
Edit: youtube-dl -U only works if it was manually installed, so leave that out if you installed from apt or whatever

Re: YouTube-dl: Open-source YouTube downloader

#263
post #28

The tragedy of this software (and many like it) is that despite working exactly as advertised, easily and with a lot of features, because it's a quiet open source project without any SEO rigging it will never appear in page 1 of any searches by laymen trying to download videos ("save youtube to hard drive", "download youtube videos" et al). The amount of crapware I've had to remove from family member's PCs just becau…

I've started to become more and more disgruntled with search engines in general. Yeah, if I want to find something obvious, I'll find it.

But what about mildly obscure software like this? This is something I would completely use, but have no way to find it. There's so many tools out there which are totally awesome, but wilting away because you can't find it in the search engines.

As much as I love technology, it still seems the best stuff is usually found through the old tried and true methodologies. Word of mouth, conferences, or from friends or other developers.

Re: YouTube-dl: Open-source YouTube downloader

#264
post #28

The tragedy of this software (and many like it) is that despite working exactly as advertised, easily and with a lot of features, because it's a quiet open source project without any SEO rigging it will never appear in page 1 of any searches by laymen trying to download videos ("save youtube to hard drive", "download youtube videos" et al). The amount of crapware I've had to remove from family member's PCs just becau…

I found this neat project that adds a GUI to YouTube-dl. It looks like an easy program for non-technical people to use. https://github.com/MrS0m30n3/youtube-dl-gui

Oh, nice find ! There's even a windows version.

edit: with an installer ! And the application updates youtube-dl to the last version. Very nice.

Re: YouTube-dl: Open-source YouTube downloader

#267
post #28

The tragedy of this software (and many like it) is that despite working exactly as advertised, easily and with a lot of features, because it's a quiet open source project without any SEO rigging it will never appear in page 1 of any searches by laymen trying to download videos ("save youtube to hard drive", "download youtube videos" et al). The amount of crapware I've had to remove from family member's PCs just becau…

It's a command line tool not very lambda Windows user friendly; that's why it's not very popular maybe

Re: YouTube-dl: Open-source YouTube downloader

#269
post #54

The only thing that irritates me about youtube-dl is that by default it will try download audio and video tracks separately and then remux them on your computer. While it's a cool feature, I don't think this is what most people want 99% of the time.

Don't know why this is being downvoted. VLC can play .part files of many formats, but not if they're seperate streams. I wish there was a way to just download the highest format that will download only one file.

    -f best
It's in the documentation.

Re: YouTube-dl: Open-source YouTube downloader

#270
post #260

Earlier quoted context omitted.

Depends on the family. My mom taught me DOS.

My parents bought me my C64. I'll always be thankful for that and therefore will remain calm helping them out in this mad digital world they don't understand at all.

I also want to thank my parents for buying me C64, my first computer, especially during the time when my family wasn't doing so well financially; I can't ever be upset about giving tech support to my parents.

It reminds me of a C64 TV ad of a student who had to drop out of college because he didn't have computer skills to be competitive (https://www.youtube.com/watch?v=jDcZeGbElnM). Somehow, it all seems relevant now, as C64 gave me a start on programming.

Post reply on HN