Skip to content

Instantly share code, notes, and snippets.

View linnykoleh's full-sized avatar
🎯
Focusing

Oleh Linnyk linnykoleh

🎯
Focusing
View GitHub Profile

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.

Downloading Videos from Pluralsight

Disclaimer

Pluralsight do not permit users to download their videos.
If you are an user of pluralsight you have agreed with their ToS,
and are thusly refrained from doing so.
Use this knowledge at your own risk.

youtube-dl for Linux

@linnykoleh
linnykoleh / pluralsight.js
Created April 18, 2017 03:42 — forked from punchouty/pluralsight.js
Pluralsight Video Download
//Login to pluralsight in chrome and Open a course you want to download
//Example - https://app.pluralsight.com/library/courses/aws-automating-cloudformation/table-of-contents
//Click on "Start" or "Resume Course" Button
//chapter listing
var list = document.getElementsByTagName("section");
var counter=0;
for (var i=0; i<list.length; i++) {
if ( list[i].className.match(/\bmodule\b/) ) {
var header_text = list[i].getElementsByTagName("h2")[0].innerText;
var ul = list[i].getElementsByClassName('clips');