Features:
- Implemented in python using requests.
- Downloading complete courses: course description, videos, exercise files and subtitles.
- Numbering of chapters, videos and subtitles.
- Subtitles will have the same name as the video file, so players like MPC-HC will automatically load the subtitles when playing a video file.
First install the requirements:
pip install -r requirements.txt
The config.py
looks like this:
USERNAME = 'user@email.com'
PASSWORD = 'password'
BASE_DOWNLOAD_PATH = 'E:/Downloads/LinkedInLearning' #use "/" as separators
SUBS = True
COURSES = [
'it-security-foundations-core-concepts',
'javascript-for-web-designers-2'
]
-
Enter your login info and download path.
-
Fill the
COURSES
array with the slug of the the courses you want to download and save the config file, for example:https://www.linkedin.com/learning/it-security-foundations-core-concepts/ -> it-security-foundations-core-concepts
Then execute the script:
python lld.py
The courses will be saved in your defined download folder.