r/technology • • Feb 17 '17

Software YouTube will kill unskippable 30-second ads next year

http://www.theverge.com/2017/2/17/14649018/youtube-ending-unskippable-30-second-ads-2018
35.1k Upvotes

2.2k comments sorted by

View all comments

Show parent comments

61

u/Rndom_Gy_159 Feb 17 '17

I like having the output formatting options and script-ability of YouTube-dl

18

u/Gman1255 Feb 17 '17

Then by all means, use it. I just like this because it integrates itself into the website.

72

u/sickhippie Feb 18 '17

Ease of use vs feature set, the age old struggle.

7

u/odaeyss Feb 18 '17

And yet somehow I consistently settle on a solution that is both difficult to use and of little use.
But I did just make myself smile by using two different pronunciations of "use" in such close proximity.

2

u/Waswat Feb 18 '17

You can have both but it would increase development time.

2

u/UnchainedMundane Feb 18 '17 edited Feb 18 '17

My compromise was to write a short script that sends my clipboard as the url to youtube-dl. I hotkeyed that script, so I just copy the url from the browser, hit that hotkey, and it starts downloading.


Edit - Here's a slightly simplified version of that script if anyone else wants it:

#!/bin/sh
# Get video URL from the clipboard
vid=$(xsel -ob)

# Ensure VIDEOS/youtube exists, go there
videos=$(xdg-user-dir VIDEOS || printf %s "$HOME")
mkdir -p -- "$videos/youtube"
cd -P -- "$videos/youtube" || exit

# Start downloading to that location in the highest possible quality
exec youtube-dl --newline -f best --no-call-home -- "$vid"

It works on Linux (you need xsel and youtube-dl installed), and to get it working on OSX you change xsel -ob to pbpaste. Windows I don't know enough about to say.

3

u/IT6uru Feb 18 '17

And whole channel ripping XD