- English is not my native language; please excuse typing errors
Udeler is free and without any ads. If you appreciate that, please consider donating to the Developer.
A cross-platform app to download your purchased courses (paid or free) from Udemy.
Project originally conceived and maintained by [@FaisalUmair](https://github.com/FaisalUmair/udemy-downloader-gui) is archived. Since then, I've kept it active, providing fixes and small features. |
- Downloading courses is against Udemy's Terms of Service, I am NOT held responsible for your account getting suspended as a result from the use of this program!
- Udemy has started to encrypt many of the course videos, so downloading them may be impossible/illegal because it involves decrypting DRM videos which opens up the author to DMCA takedowns/lawsuits.
- If you use Udeler and some/all videos are skipped, please don't open a new issue or comment that the issue still exists. All requests to bypass DRM/encryption will be ignored.
- This program is WIP, the code is provided as-is and I am not held resposible for any legal issues resulting from the use of this program.
If you'd like to see the full context, then read issue 609.
This software is WIP, the code is provided as-is and I am not held resposible for any legal issues resulting from the use of this program.
This software is intended to help you download Udemy courses for personal use only.
Sharing the content of your subscribed courses is strictly prohibited under Udemy Terms of Use.
Each and every course on Udemy is subjected to copyright infringement.
This software does not magically download any paid course available on Udemy, you need to provide your Udemy login credentials to download the courses you have enrolled in.
Udeler downloads the lecture videos by simply using the source of the video player returned to the user by Udemy after proper authentication, you can also do the same manually.
Many download managers use same method to download videos on a web page. This app only automates the process of a user doing this manually in a web browser.
All code is licensed under the MIT license
#Screenshots
Any contributions are welcome, if you plan to contribute please read the contributing docs first.
if you want help using the program, use github issues. This version is currently only available on the Windows platform (x86, x64). Waiting for volunteers to compile for Linux and Mac platforms.
Made with contrib.rocks.
Since Udeler v1.6.0, there is support for login through Udeler Authenticator (A chrome extension for easily authenticating a Udemy account with Udeler).
-
Install the extension from here
-
After installing/enabling the extension, open udeler desktop app, you will see a new anonymous icon on the login page. Click the icon and it will start to listen for any login requests from your chrome web browser.
-
Open Udemy website on your chrome web browser and simply login to your account. Udeler app will detect the login and will let you in. If you are already logged in to Udemy, you can simply visit the website and it will still detect your account.
Expand
Platform | Arch | Version | Link |
---|---|---|---|
Windows | x64 | 1.8.2 | Download |
Windows | x86 | 1.8.2 | Download |
Mac | x64 | 1.8.2 | Download |
Linux | x86_x64 | 1.8.2 | Download |
Expand
You must have npm and nodejs installed.
Expand
1. Clone the project
2. Run npm install
3. Run npm start
Expand
Detect Platform:
npm run dist
Windows:
npm run build-win
Mac:
npm run build-mac
Linux:
npm run build-linux
Cross Platform:
npm run build
Append "-- --ia32" to npm run command
Example:
npm run build-win -- --ia32
Expand
First run ```npm run install``` to download/setup the required libraries.
Now in Visual Studio Code press CTRL-SHIFT-P
and type "Debug: Open launch.json".
Insert this:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/index.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd",
"runtimeArgs": [
".",
"--enable-logging",
"--debug"
],
"env": {},
"console": "internalConsole",
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
}
]
}
(For MacOS/Linux, remove the .cmd from the runtimeExecutable.)
Udeler is free and without any ads. If you appreciate that, please consider donating to the Developer.