Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download Udemy Videos? [closed]

Tags:

video

Once you buy a course there is usually option to download individual lecture. However there are many courses on Udemy which do not have download option for the lecture. Is there a way to download them.

like image 442
Pikachu-go Avatar asked Jan 30 '17 08:01

Pikachu-go


People also ask

Is there a way to download Udemy videos?

Course lectures can be downloaded for offline viewing on the Udemy mobile app.

Why my Udemy videos are muted?

If you can't hear any audio, double check to see that the course player volume is turned up and that the video is not muted. Check the sound settings on your device.


2 Answers

To download udemy videos download udemy-dl which is a python based application. It helps login and then download all your paid udemy videos which do not even have download option.

Following are steps for Mac:

1. Install pip

sudo easy_install pip

2. Install udemy-dl

sudo pip install udemy-dl

Use the following commands to download the course:

udemy-dl course-url

This is prompt username and password. You can supply it in command itself

udemy-dl -u username -p password course-url

Many times connection break causes course are really or internet issues. You can specify start and end of lecture number to download specific lecture.

udemy-dl -u username -p password --lecture-start 1 --lecture-end 99 course-url
like image 169
Pikachu-go Avatar answered Dec 15 '22 07:12

Pikachu-go


The udemy-dl method doesn't always work; but the youtube-dl method works every time! And I'm personally using it for downloading Udemy courses all at once (full course) or also individual videos. You can do so easily with the help of the youtube-dl Python script.

  1. You have to have Python and PIP installed.

  2. Open command prompt or terminal

  3. Type in there: pip install youtube-dl

  4. Then after downloading youtube-dl , open your Udemy account where you have bought the course.

  5. Open the course that you want to download.

  6. Click on the course content option

  7. Copy the link in url bar copy the link in url bar

  8. Finally, execute the following command in your terminal:

    C:\Users\ARSHDEEP SINGH>** youtube-dl -u [email protected] -p password COURSE_LINK**

Type your username or e-mail and password

If the username and password are correct, the following will appear in your terminal:

[udemy:course] Downloading login popup
[udemy:course] Logging in as [email protected]
[udemy:course] python-for-data-science-and-machine-learning-bootcamp: Downloading webpage
[udemy:course] 903744: Downloading course curriculum
[download] Downloading playlist: Python for Data Science and Machine Learning Bootcamp
[udemy:course] playlist Python for Data Science and Machine Learning Bootcamp: Collected 133 video ids (downloading 133 of them)
[download] Downloading video 1 of 133
[udemy] Downloading login popup
[udemy] 5440650: Downloading webpage
[udemy] 5440650: Downloading lecture JSON
[download] Resuming download at byte 114615
[download] Destination: Introduction to the Course-6808420.mp4
[download]   0.7% of 43.01MiB at 66.01KiB/s ETA 11:02

here explained with screenshots!! also explained for mac users

like image 38
Arshdeep Singh Avatar answered Dec 15 '22 07:12

Arshdeep Singh