DDownloader 0.4.2__py3-none-any.whl → 0.4.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- DDownloader/bin/yt-dlp.exe +0 -0
- DDownloader/modules/__init__.py +1 -1
- DDownloader/modules/banners.py +1 -1
- DDownloader/modules/downloader.py +2 -4
- DDownloader/modules/helper.py +4 -3
- {ddownloader-0.4.2.dist-info → ddownloader-0.4.4.dist-info}/METADATA +2 -1
- {ddownloader-0.4.2.dist-info → ddownloader-0.4.4.dist-info}/RECORD +10 -10
- {ddownloader-0.4.2.dist-info → ddownloader-0.4.4.dist-info}/WHEEL +0 -0
- {ddownloader-0.4.2.dist-info → ddownloader-0.4.4.dist-info}/entry_points.txt +0 -0
- {ddownloader-0.4.2.dist-info → ddownloader-0.4.4.dist-info}/licenses/LICENSE +0 -0
DDownloader/bin/yt-dlp.exe
CHANGED
Binary file
|
DDownloader/modules/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "0.4.
|
1
|
+
__version__ = "0.4.4"
|
DDownloader/modules/banners.py
CHANGED
@@ -23,7 +23,7 @@ def banners():
|
|
23
23
|
stdout.write(""+Fore.YELLOW +"╔════════════════════════════════════════════════════════════════════════════╝\n")
|
24
24
|
stdout.write(""+Fore.YELLOW +"║ \x1b[38;2;255;20;147m• "+Fore.GREEN+"GITHUB "+Fore.RED+" |"+Fore.LIGHTWHITE_EX+" GITHUB.COM/THATNOTEASY "+Fore.YELLOW+"║\n")
|
25
25
|
stdout.write(""+Fore.YELLOW +"╚════════════════════════════════════════════════════════════════════════════╝\n")
|
26
|
-
print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}A DRM-Protected & Non-Protected Content Downloader - {Fore.RED}[V0.4.
|
26
|
+
print(f"{Fore.YELLOW}[DDownloader] - {Fore.GREEN}A DRM-Protected & Non-Protected Content Downloader - {Fore.RED}[V0.4.4] \n{Fore.RESET}")
|
27
27
|
|
28
28
|
# =========================================================================================================== #
|
29
29
|
|
@@ -149,8 +149,6 @@ class DOWNLOADER:
|
|
149
149
|
command = [
|
150
150
|
yt_dlp_path,
|
151
151
|
"-o", f"\"{output_file}\"", # Output file
|
152
|
-
"--no-check-certificate", # Bypass certificate verification
|
153
|
-
"--ignore-errors", # Ignore errors and continue downloading
|
154
152
|
]
|
155
153
|
|
156
154
|
# Add cookies if provided
|
@@ -165,9 +163,9 @@ class DOWNLOADER:
|
|
165
163
|
"--audio-quality", "0", # Best quality
|
166
164
|
])
|
167
165
|
else:
|
168
|
-
# For MP4, download the best video and audio formats and merge them
|
166
|
+
# For MP4, download the best quality video and audio formats and merge them
|
169
167
|
command.extend([
|
170
|
-
"-f", "
|
168
|
+
"-f", "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best", # Prioritize best MP4 video + best M4A audio, fallback to best MP4, then best overall
|
171
169
|
"--merge-output-format", "mp4", # Merge into MP4
|
172
170
|
])
|
173
171
|
|
DDownloader/modules/helper.py
CHANGED
@@ -21,11 +21,12 @@ binaries = {
|
|
21
21
|
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/aria2c.exe",
|
22
22
|
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/mp4decrypt.exe",
|
23
23
|
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/shaka-packager.exe",
|
24
|
-
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/
|
25
|
-
"https://github.com/
|
24
|
+
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/mkvmerge.exe",
|
25
|
+
"https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp.exe"
|
26
26
|
],
|
27
27
|
"Linux": [
|
28
|
-
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/N_m3u8DL-RE"
|
28
|
+
"https://github.com/ThatNotEasy/DDownloader/raw/refs/heads/main/DDownloader/bin/N_m3u8DL-RE",
|
29
|
+
"https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp"
|
29
30
|
]
|
30
31
|
}
|
31
32
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: DDownloader
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.4
|
4
4
|
Summary: A downloader for DRM-protected & Non DRM-protected content.
|
5
5
|
License: MIT License
|
6
6
|
|
@@ -41,6 +41,7 @@ Requires-Dist: loguru (>=0.6.0)
|
|
41
41
|
Requires-Dist: pymediainfo (>=6.1.0,<7.0.0)
|
42
42
|
Requires-Dist: requests (>=2.26.0)
|
43
43
|
Requires-Dist: tqdm (>=4.64.0)
|
44
|
+
Requires-Dist: yt-dlp (>=2025.10.11.232807.dev0,<2026.0.0.0)
|
44
45
|
Project-URL: Homepage, https://github.com/ThatNotEasy/DDownloader
|
45
46
|
Description-Content-Type: text/markdown
|
46
47
|
|
@@ -5,16 +5,16 @@ DDownloader/bin/mkvmerge.exe,sha256=s2WkBPBuhpWPNHKXwDBfQ4vOMXLYTfxu62PbnRqK55A,
|
|
5
5
|
DDownloader/bin/mp4decrypt.exe,sha256=S_bzdPhiOvIULnxdTsWMgk98zhn4_KrD5EBBshXYEoY,366080
|
6
6
|
DDownloader/bin/N_m3u8DL-RE.exe,sha256=5ck6jeDFjFCSLBeoo7q9fSGT-0Oxp_rNCxjeknTvgGE,17197568
|
7
7
|
DDownloader/bin/shaka-packager.exe,sha256=GMkenPGAN7GhuM7Kc48IKcR2_jjiD3M6p-u6PP5Ddls,5366272
|
8
|
-
DDownloader/bin/yt-dlp.exe,sha256
|
8
|
+
DDownloader/bin/yt-dlp.exe,sha256=-TDLa-8yLLaS-553juUpUmGedfB_KwY9VU_yEAzr99k,18329700
|
9
9
|
DDownloader/main.py,sha256=MQlFnNz5zwxHVwPucM7eqHhgSDG3N6fEsiMANxNlva4,7172
|
10
|
-
DDownloader/modules/__init__.py,sha256=
|
10
|
+
DDownloader/modules/__init__.py,sha256=xw_dYipbaGm6aV2OPgH234_ODRnMNhDWYLau1HFUaAQ,21
|
11
11
|
DDownloader/modules/args_parser.py,sha256=UjuGRs4paIUHGSOqbjC5RwEfe0ZfVRBCTU1IU0tgY4o,1307
|
12
|
-
DDownloader/modules/banners.py,sha256=
|
13
|
-
DDownloader/modules/downloader.py,sha256=
|
14
|
-
DDownloader/modules/helper.py,sha256
|
12
|
+
DDownloader/modules/banners.py,sha256=hVfd6tZ9p-nes7kvEE1oDEHcywBhBYe-owAu74mvW-E,5774
|
13
|
+
DDownloader/modules/downloader.py,sha256=qyBW7JlcOv8FLlD14hSOoAmlFTxUwWDpFeqS6Os8GB8,16271
|
14
|
+
DDownloader/modules/helper.py,sha256=ZLz5hz5ks-8MrYeINyUKYTzjCIjW_NGFIVijf6L0ClI,8298
|
15
15
|
DDownloader/modules/streamlink.py,sha256=t7aaHCnINzSFybTmAd-dvfGFQkepFHJwrOBcNxyJviY,504
|
16
|
-
ddownloader-0.4.
|
17
|
-
ddownloader-0.4.
|
18
|
-
ddownloader-0.4.
|
19
|
-
ddownloader-0.4.
|
20
|
-
ddownloader-0.4.
|
16
|
+
ddownloader-0.4.4.dist-info/entry_points.txt,sha256=36xFMHKWyVvFKBCCMd3ctyd6tyujf685-qilrMpsA1E,53
|
17
|
+
ddownloader-0.4.4.dist-info/licenses/LICENSE,sha256=cnjTim3BMjb9cVC_b3oS41FESKLuvuDsufVHa_ymZRw,1090
|
18
|
+
ddownloader-0.4.4.dist-info/METADATA,sha256=aaKqXCy5n4FoDBNhDTJ3u_pfU4LqJ_19bQy5lJt3K2I,4989
|
19
|
+
ddownloader-0.4.4.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
20
|
+
ddownloader-0.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|