购买课程后,通常可以选择下载个别课程。然而,Udemy有许多课程没有下载选项。有没有办法下载它们。
答案 0 :(得分:24)
udemy-dl方法工作非常罕见但 youtube-dl 方法每次工作...我个人用它来下载内容
一次下载udemy视频(完整课程)或特定视频。
你可以轻松地在 youtube-dl
python脚本的帮助下轻松完成。
pip install youtube-dl
在 cmd 中编写python脚本,如下所示:
C:\ Users \ ARSHDEEP SINGH> youtube-dl -u user@gmail.com -p密码课程链接
输入您的姓名或注册的电子邮件和密码
如果用户名和密码写得正确,您将在cmd中显示
[udemy:course] Downloading login popup
[udemy:course] Logging in as 2arshahuja@gmail.com
[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 screen shots!! also explained for mac users
答案 1 :(得分:5)
下载udemy视频下载 udemy-dl 这是一个基于python的应用程序。它有助于登录,然后下载所有甚至没有下载选项的付费udemy视频。
以下是Mac的步骤:
1。安装点子
sudo easy_install pip
2。安装udemy-dl
sudo pip install udemy-dl
使用以下命令下载课程:
udemy-dl course-url
这是提示用户名和密码。您可以在命令本身中提供它
udemy-dl -u username -p password course-url
很多时候连接中断导致课程真的或互联网问题。您可以指定讲座编号的开始和结束以下载特定讲座。
udemy-dl -u username -p password --lecture-start 1 --lecture-end 99 course-url
答案 2 :(得分:2)
在Mac上试用时,我遇到了各种各样的错误。所以我是从一个ubuntu虚拟盒子(使用vagrant安装)完成的。从ubuntu盒子里,它可以无缝地为我工作。
1)使用ubuntu
设置一个流浪盒mkdir ubuntu
vagrant init ubuntu/xenial64
vagrant up
谷歌,如果你不知道“如何安装流浪汉”
2)将流浪汉ssh放入盒子中
vagrant ssh
3)按照git中给出的步骤设置'udemy-dl'
git clone https://github.com/r0oth3x49/udemy-dl.git
pip install -r requirements.txt
4)按照通常的方式下载(从虚拟框中):
python udemy-dl.py -u user@domain.com -p p4ssw0rd COURSE_URL
点击此链接安装pip https://www.saltycrane.com/blog/2010/02/how-install-pip-ubuntu/
4)将内容复制回计算机。您可以关注: How to copy file from a Vagrant machine to local host ..
如果您遇到xenial的密码问题,请按照:https://askubuntu.com/questions/832137/ubuntu-xenial64-box-password
进行操作