Live data from Hacker News

YouTube-dl: Open-source YouTube downloader

rg3.github.io

81–90 of 338 posts

Re: YouTube-dl: Open-source YouTube downloader

#81

Earlier quoted context omitted.

Yeah? Is Wireshark illegal too? Because I could get the same data by taking a pcap. The bits are on my computer. I get that I can't just go redistributing it (legally), and that youtube probably doesn't _like_ it, but if it's illegal (and honestly, maybe it is in the US given how ridiculous copyright and licensing law is there) that's ridiculous.

Using Wireshark is sort of illegal in Germany.

Can you elaborate?

Re: YouTube-dl: Open-source YouTube downloader

#82
post #43

Earlier quoted context omitted.

Your family members would use a command line app ?

If they knew about it, sure. All it would take is a 3 step (after initial download) instructional with some screenshots: 1. Open Explorer where you downloaded youtube-dl 2. Shift+Right click -> Open command window here 3. Type 'youtube-dl ' and paste url[0], then enter As I said it really is a discoverability problem, one that the organiser of the world's information is neither incentivised nor really expected to add…

> 1. Open Explorer where you downloaded youtube-dl

Already too complicated for my parents. I have shown my mother how to open her downloads folder for over a decade and she still can't do it. Sigh.

Re: YouTube-dl: Open-source YouTube downloader

#83
post #43

Earlier quoted context omitted.

If they knew about it, sure. All it would take is a 3 step (after initial download) instructional with some screenshots: 1. Open Explorer where you downloaded youtube-dl 2. Shift+Right click -> Open command window here 3. Type 'youtube-dl ' and paste url[0], then enter As I said it really is a discoverability problem, one that the organiser of the world's information is neither incentivised nor really expected to add…

[0] ok, this is a pain pre Win 10, but ^V is supported now Just gotta remember the old "Alt-Space, E, P" shortcut sequence. And Alt-Space, E, K for selecting/copying.

Shift-Insert, man.

Re: YouTube-dl: Open-source YouTube downloader

#84
post #75

Here's something i've added to my .bashrc that lets me type in simply 'play ' using youtube-dl and mplayer (I forget where I found this gem, and sorry for weird formatting, won): function play { youtube-dl --default-search=ytsearch: \ --youtube-skip-dash-manifest \ --output="${TMPDIR:-/tmp/}%(title)-s%(id)s.%(ext)s" \ --restrict-filenames \ --format="bestaudio[ext!=webm]" \ --exec=mplayer -vvv "$*" } play rick astley…

One very minor annoyance I had was using it with BBC iPlayer. It works, but downloads the video as many dozens of tiny parts to reassemble. Since I use ~/Desktop as my default downloads folder, I created this to keep my desktop uncluttered while it runs:

  ytdl()
  {
    mkdir /tmp/ytdl && cd /tmp/ytdl
    for item in "$@" ; do youtube-dl "$@" ; done ;
    mv /tmp/ytdl/* ~/Desktop/
    rm -rf /tmp/ytdl
    exit
  }
Now I can Ctrl + Alt + T a new Terminal window, type ytdl http://www.bbc.co.uk/iplayer/episode/... (can use multiple links) then minimise the window and move on to other things.

Re: YouTube-dl: Open-source YouTube downloader

#85
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…

The link an hacker news will definitly help.

Re: YouTube-dl: Open-source YouTube downloader

#86

Earlier quoted context omitted.

Using Wireshark is sort of illegal in Germany.

Can you elaborate?

https://www.schneier.com/blog/archives/2007/08/new_german_ha...

Germany introduced a poorly-worded cybercrime law that basically made all network tools illegal (including nmap, wi-spy), but also disassemblers, on the basis that they "could be used in digital crime".

It's similar to making cars illegal because of a traffic fatality.

Re: YouTube-dl: Open-source YouTube downloader

#87
post #75

Here's something i've added to my .bashrc that lets me type in simply 'play ' using youtube-dl and mplayer (I forget where I found this gem, and sorry for weird formatting, won): function play { youtube-dl --default-search=ytsearch: \ --youtube-skip-dash-manifest \ --output="${TMPDIR:-/tmp/}%(title)-s%(id)s.%(ext)s" \ --restrict-filenames \ --format="bestaudio[ext!=webm]" \ --exec=mplayer -vvv "$*" } play rick astley…

This is brilliant! Thank you :) although I renamed it to yplay, since play is already used on my system.

Re: YouTube-dl: Open-source YouTube downloader

#88
post #60

Earlier quoted context omitted.

I'd have more sympathy if youtube hadn't removed the "preloading" feature on the android app - I was an avid user of this feature for train journeys where I have little signal. Now I'm using downloaders. These sort of violations are always of the company's own making.

From https://www.youtube.com/red : "Enjoy videos without ads–and in the background or offline on mobile devices"

Also from https://www.youtube.com/red: "YouTube Red is not currently available in United Kingdom."

Re: YouTube-dl: Open-source YouTube downloader

#89
This is a great project. I have been using it for more than 4 years and it has never disappointed me ever. It picks up from the interrupted download, can convert in any format you prefer and get only audio out if you will.

Great work guys! Thanks for creating such an awesome piece of software.

Re: YouTube-dl: Open-source YouTube downloader

#90
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.

That’s because the best quality streams are delivered that way by Google so if you want the higher quality video+audio you have to download them separately and remux them locally.
Post reply on HN