linuxacademy-download-chrome
A JavaScript for extracting videos (.m3u8) and subtitles (.vtt) URLs from linuxacademy.com
Usage
- Make sure
ffmpeg.exeandwget.exeare installed and set in thepathof OS, i.e. can get info. by runningffmpeg -versionandwget --versionin terminal or cmd. - Log-in and open a course, e.g. https://linuxacademy.com/cp/modules/view/id/245
- Run the script in the
ConsoleorSourcestab ofChrome DevTools(open it by pressingF12) - The result will be shown in the console, including:
- cmd for downloading
Videoswith ‘ffmpeg’ - cmd for downloading
Subtitleswith ‘wget’ - cmd for marking all
Lessonscompleted
- cmd for downloading
- Copy and save one of above cmd to a bash file, e.g.
get.sh - Execute
./get.shto start downloading
Note
&& in the cmd means executing commands line by line (Recommanded), revise it to & will execute commands in parallel.