udemy dl
v1.1
一個基於 Python 的跨平台實用程序,用於從 udemy 下載課程供個人離線使用。
Udemy 已開始對許多課程視頻進行加密,因此下載它們可能是不可能/非法的,因為它涉及解密 DRM 視頻,這會使作者面臨 DMCA 刪除/訴訟。如果您使用 udemy-dl 並且跳過了部分/所有視頻,請不要打開新問題或評論該問題仍然存在。所有繞過 DRM/加密的請求都將被忽略。
如果您想查看完整的上下文,請閱讀第 627 期。
Now udemy-dl doesn't support python 2
)pip
requests
colorama
unidecode
six
cloudscraper
requests[security]
或pyOpenSSL
pip install -r requirements.txt
apt install ffmpeg
安裝它。--cache
)--keep-vtt
)--skip-hls
)--info
)。--sub-only, --skip-sub
)。--assets-only, --skip-assets
)。-c / --chapter
)。-l / --lecture
)。-s / --sub-lang
)。--chapter-start, --chapter-end
)。--lecture-start, --lecture-end
)。-q / --quality
)。-o / --output
)。-k / --cookies
)。master
來重現它。cookies.txt
檔案應具有以下簡單格式,例如:
access_token =JKU9QNs2IQDBKoYKvOBclSPXN97baf32o1Jo2L9vX
您可以透過複製 GitHub 儲存庫來下載最新版本的 udemy-dl。
git clone https://github.com/r0oth3x49/udemy-dl.git
下載課程
python udemy-dl.py COURSE_URL
從文件下載課程
python udemy-dl.py FILE-CONTAINING-COURSE-URLs
下載特定解析度的課程
python udemy-dl.py COURSE_URL -q 720
將課程下載到特定位置
python udemy-dl.py COURSE_URL -o "/path/to/directory/"
將具有特定解析度的課程下載到特定位置
python udemy-dl.py COURSE_URL -q 720 -o "/path/to/directory/"
下載課程中的特定章節
python udemy-dl.py COURSE_URL -c NUMBER
下載章節中的特定講座
python udemy-dl.py COURSE_URL -c NUMBER -l NUMBER
下載特定章節的講座範圍
python udemy-dl.py COURSE_URL -c NUMBER --lecture-start NUMBER --lecture-end NUMBER
下載課程中的章節範圍
python udemy-dl.py COURSE_URL --chapter-start NUMBER --chapter-end NUMBER
從章節範圍下載特定講座
python udemy-dl.py COURSE_URL --chapter-start NUMBER --chapter-end NUMBER --lecture NUMBER
從章節範圍下載講座範圍
python udemy-dl.py COURSE_URL --chapter-start NUMBER --chapter-end NUMBER --lecture-start NUMBER --lecture-end NUMBER
列出課程中的特定章節
python udemy-dl.py COURSE_URL -c NUMBER --info
列出某一章的具體講座
python udemy-dl.py COURSE_URL -c NUMBER -l NUMBER --info
使用語言代碼下載特定字幕,例如 (en, es) 如果未指定 lang 開關,則預設為所有字幕
python udemy-dl.py COURSE_URL --sub-lang en
Author: Nasir khan (r0ot h3x49)
usage: udemy-dl.py [-h] [-v] [-u] [-p] [-k] [-o] [-q] [-c] [-l] [-s] [--chapter-start] [--chapter-end] [--lecture-start] [--lecture-end] [--info] [--cache]
[--keep-vtt] [--sub-only] [--skip-sub] [--skip-hls] [--assets-only] [--skip-assets]
course
A cross-platform python based utility to download courses from udemy for personal offline use.
positional arguments:
course Udemy course.
General:
-h, --help Shows the help.
-v, --version Shows the version.
Authentication:
-u , --username Username in udemy.
-p , --password Password of your account.
-k , --cookies Cookies to authenticate with.
Advance:
-o , --output Download to specific directory.
-q , --quality Download specific video quality.
-c , --chapter Download specific chapter from course.
-l , --lecture Download specific lecture from chapter(s).
-s , --sub-lang Download specific subtitle/caption (e.g:- en).
--chapter-start Download from specific position within course.
--chapter-end Download till specific position within course.
--lecture-start Download from specific position within chapter(s).
--lecture-end Download till specific position within chapter(s).
Others:
--info List all lectures with available resolution.
--cache Cache your session to avoid providing again.
--keep-vtt Keep WebVTT caption(s).
--sub-only Download captions/subtitle only.
--skip-sub Download course but skip captions/subtitle.
--skip-hls Download course but skip hls streams. (fast fetching).
--assets-only Download asset(s) only.
--skip-assets Download course but skip asset(s).
Example:
python udemy-dl.py COURSE_URL
python udemy-dl.py COURSE_URL -k cookies.txt
python udemy-dl.py -u [email protected] -p p4ssw0rd COURSE_URL