-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule yt-dlp
updated
27 files
+3 −3 | .github/ISSUE_TEMPLATE/1_broken_site.yml | |
+3 −3 | .github/ISSUE_TEMPLATE/2_site_support_request.yml | |
+3 −3 | .github/ISSUE_TEMPLATE/3_site_feature_request.yml | |
+3 −3 | .github/ISSUE_TEMPLATE/4_bug_report.yml | |
+1 −1 | .github/ISSUE_TEMPLATE/5_feature_request.yml | |
+1 −0 | CONTRIBUTORS | |
+19 −1 | Changelog.md | |
+24 −14 | README.md | |
+5 −0 | supportedsites.md | |
+34 −2 | test/test_cookies.py | |
+32 −30 | yt_dlp/YoutubeDL.py | |
+15 −5 | yt_dlp/__init__.py | |
+264 −56 | yt_dlp/cookies.py | |
+1 −0 | yt_dlp/downloader/external.py | |
+2 −0 | yt_dlp/downloader/fragment.py | |
+79 −59 | yt_dlp/extractor/bilibili.py | |
+2 −1 | yt_dlp/extractor/cbc.py | |
+7 −0 | yt_dlp/extractor/extractors.py | |
+13 −1 | yt_dlp/extractor/generic.py | |
+122 −0 | yt_dlp/extractor/pixivsketch.py | |
+109 −1 | yt_dlp/extractor/tiktok.py | |
+25 −18 | yt_dlp/extractor/youtube.py | |
+28 −27 | yt_dlp/extractor/zee5.py | |
+10 −9 | yt_dlp/options.py | |
+38 −33 | yt_dlp/postprocessor/embedthumbnail.py | |
+5 −5 | yt_dlp/postprocessor/ffmpeg.py | |
+2 −2 | yt_dlp/version.py |