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