Last active
August 29, 2015 14:25
-
-
Save jedi4ever/7b2f1dd937917bb65cdb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 [email protected] -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