Skip to content

Instantly share code, notes, and snippets.

@ikhsanalatsary
Forked from quangnd-pgvn/youtube-dl-pluralsight.md
Last active September 1, 2020 02:59
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 ikhsanalatsary/0c2697e3d77c1f21e353b8ab6c764eac to your computer and use it in GitHub Desktop.
Save ikhsanalatsary/0c2697e3d77c1f21e353b8ab6c764eac to your computer and use it in GitHub Desktop.
Download Pluralsight videos

Download Plural Sight videos

Software required:

youtube-dl

After installation and putting the youtube-dl in PATH

youtube-dl --username YOUR_USERNAME --password YOUR_PASSWORD --all-subs  https://app.pluralsight.com/library/courses/javascript-development-environment -o "~/video/%(playlist)s/%(chapter_number)s. %(chapter)s/%(playlist_index)s. %(title)s.%(ext)s" --sleep-interval 10  --user-agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36"

Where

  • YOUR_USERNAME is your Plural Sight username
  • YOUR_PASSWORD is your Plural Sight password
  • --all-subs will download video and subtitles
  • Add --skip-download if you only download subtitles (in case you downloaded video before)
  • --sleep-internval is optional but it's a safe practice to mimic video watching.
  • --user-agent if you continually get the response 403
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment