udemy dl
v1.1
個人的なオフライン使用のために udemy からコースをダウンロードするためのクロスプラットフォームの Python ベースのユーティリティです。
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