Skip to content

Instantly share code, notes, and snippets.

@jedi4ever
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedi4ever/7b2f1dd937917bb65cdb to your computer and use it in GitHub Desktop.
Save jedi4ever/7b2f1dd937917bb65cdb to your computer and use it in GitHub Desktop.
Created vm ubuntu 14.04
Tried installing via apt-get install youtube-dl
- kept getting errors on Unable to download webpage: <urlopen error [Errno 8] _ssl.c:510: EOF occurred in violation of protocol>
- this is a bug when using python2 (default on ubuntu)
- So remove the apt package
Install via pip:
- apt-get install pip
- alias python=`/usr/bin/python3`
- pip install youtube-dl
- if you download a user directly it will have no information on the albums
- therefore you need to download album by album
/usr/local/bin/youtube-dl -o "%(playlist)s/%(title)s" -c --write-all-thumbnails --write-description --write-info-json --no-check-certificate --verbose -u info@devopsdays.org -p "THEPASSWORDRIGHT" https://vimeo.com/album/3444365
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment