Skip to content

Instantly share code, notes, and snippets.

@linnykoleh
Forked from williwambu/README.md
Created April 18, 2017 03:52
Show Gist options
  • Save linnykoleh/1fb747769ab794cecc1f7a8e3260593c to your computer and use it in GitHub Desktop.
Save linnykoleh/1fb747769ab794cecc1f7a8e3260593c to your computer and use it in GitHub Desktop.

DOWNLOADING VIDEOS FROM PLURALSIGHT USING YOUTUBE-DL

Youtube-dl can be used to download course videos from pluralsight

   $ youtube-dl --username <myusername> --password <mypassword> "URL to course outline"

Pluralsight may lock you out of your account after you download a lot of content from the site.

To overcome this, use rate-limit in the command as follows:

    $ youtube-dl --username <myusername> --password <mypassword> --rate-limit 50K --sleep-interval 120 "URL to course outline"

The above command will pick up a new video every 120 seconds.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment