Skip to content

ergoz/udemy_downloader_gui

 
 

Repository files navigation

Udeler | Udemy Course Downloader (GUI)

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.

Warning

Udemy has started to encrypt many of the course videos, so downloading them may be impossible/illegal because it involves decrypting DRM'd 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.

If you'd like to see the full context, then read issue 609.

Disclaimer:

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.

License

All code is licensed under the MIT license

#Screenshots

v187 v187-down v187-config

Contributing:

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.

Release Versions

Download for Windows Last Release

  1. Added link to update active repository
  2. New option: Check for a new version on startup
  3. New option: Start downloads at startup
  4. New option: If course is encrypted, keep downloading attachments and videos not encrypted
  5. Added description in flag for DRM-encrypted video
  6. Allows you to resize the window size.
  7. Keeps track of which courses you have previously downloaded.
  8. Manually hide courses already downloaded
  9. A button for open course in browser
  10. When there is only one subtitle, it will not ask you to select the language.
  11. You can configure which default subtitle language should be downloaded.
  12. Allows you to automatically start downloading the unfinished course.
  13. Download speed displaying in Kbps or Mbps units
  • Fix: When resuming paused download

Downloads:

Platform Arch Version Link
Windows x64 1.9.1 Download
Windows x86 1.9.1 Download

Facing Login Issues?

Since Udeler v1.6.0, there is support for login through Udeler Authenticator (A chrome extension for easily authenticating a Udemy account with Udeler).

How to use Udeler Authenticator?

  1. Install the extension from here

  2. 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.

  3. 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.

Download Previous Version for Windows, Mac and Linux

Expand

Downloads:

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

Prerequisites

Expand

You must have npm and nodejs installed.

To use the application

Expand

1. Clone the project
2. Run npm install
3. Run npm start

Build

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

To force 32 bit build:

Append "-- --ia32" to npm run command

Example:

npm run build-win -- --ia32

Debug

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.)

Donate

Udeler is free and without any ads. If you appreciate that, please consider donating to the Developer.

Donate

About

A desktop application for downloading Udemy Courses

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 72.8%
  • HTML 22.6%
  • CSS 4.6%