yt-dlp 2025.12.3.233056.dev0__py3-none-any.whl → 2025.12.4.233042.dev0__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.
- yt_dlp/extractor/archiveorg.py +39 -11
- yt_dlp/version.py +3 -3
- {yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/METADATA +1 -1
- {yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/RECORD +12 -12
- {yt_dlp-2025.12.3.233056.dev0.data → yt_dlp-2025.12.4.233042.dev0.data}/data/share/bash-completion/completions/yt-dlp +0 -0
- {yt_dlp-2025.12.3.233056.dev0.data → yt_dlp-2025.12.4.233042.dev0.data}/data/share/doc/yt_dlp/README.txt +0 -0
- {yt_dlp-2025.12.3.233056.dev0.data → yt_dlp-2025.12.4.233042.dev0.data}/data/share/fish/vendor_completions.d/yt-dlp.fish +0 -0
- {yt_dlp-2025.12.3.233056.dev0.data → yt_dlp-2025.12.4.233042.dev0.data}/data/share/man/man1/yt-dlp.1 +0 -0
- {yt_dlp-2025.12.3.233056.dev0.data → yt_dlp-2025.12.4.233042.dev0.data}/data/share/zsh/site-functions/_yt-dlp +0 -0
- {yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/WHEEL +0 -0
- {yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/entry_points.txt +0 -0
- {yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/licenses/LICENSE +0 -0
yt_dlp/extractor/archiveorg.py
CHANGED
|
@@ -704,6 +704,24 @@ class YoutubeWebArchiveIE(InfoExtractor):
|
|
|
704
704
|
'thumbnail': 'https://web.archive.org/web/20160108040020if_/https://i.ytimg.com/vi/SQCom7wjGDs/maxresdefault.jpg',
|
|
705
705
|
'upload_date': '20160107',
|
|
706
706
|
},
|
|
707
|
+
}, {
|
|
708
|
+
# dmuxed formats
|
|
709
|
+
'url': 'https://web.archive.org/web/20240922160632/https://www.youtube.com/watch?v=z7hzvTL3k1k',
|
|
710
|
+
'info_dict': {
|
|
711
|
+
'id': 'z7hzvTL3k1k',
|
|
712
|
+
'ext': 'webm',
|
|
713
|
+
'title': 'Praise the Lord and Pass the Ammunition (BARRXN REMIX)',
|
|
714
|
+
'description': 'md5:45dbf2c71c23b0734c8dfb82dd1e94b6',
|
|
715
|
+
'uploader': 'Barrxn',
|
|
716
|
+
'uploader_id': 'TheRockstar6086',
|
|
717
|
+
'uploader_url': 'https://www.youtube.com/user/TheRockstar6086',
|
|
718
|
+
'channel_id': 'UCjJPGUTtvR9uizmawn2ThqA',
|
|
719
|
+
'channel_url': 'https://www.youtube.com/channel/UCjJPGUTtvR9uizmawn2ThqA',
|
|
720
|
+
'duration': 125,
|
|
721
|
+
'thumbnail': r're:https?://.*\.(jpg|webp)',
|
|
722
|
+
'upload_date': '20201207',
|
|
723
|
+
},
|
|
724
|
+
'params': {'format': 'bv'},
|
|
707
725
|
}, {
|
|
708
726
|
'url': 'https://web.archive.org/web/http://www.youtube.com/watch?v=kH-G_aIBlFw',
|
|
709
727
|
'only_matching': True,
|
|
@@ -1060,6 +1078,19 @@ class YoutubeWebArchiveIE(InfoExtractor):
|
|
|
1060
1078
|
capture_dates.extend([self._OLDEST_CAPTURE_DATE, self._NEWEST_CAPTURE_DATE])
|
|
1061
1079
|
return orderedSet(filter(None, capture_dates))
|
|
1062
1080
|
|
|
1081
|
+
def _parse_fmt(self, fmt, extra_info=None):
|
|
1082
|
+
format_id = traverse_obj(fmt, ('url', {parse_qs}, 'itag', 0))
|
|
1083
|
+
return {
|
|
1084
|
+
'format_id': format_id,
|
|
1085
|
+
**self._FORMATS.get(format_id, {}),
|
|
1086
|
+
**traverse_obj(fmt, {
|
|
1087
|
+
'url': ('url', {lambda x: f'https://web.archive.org/web/2id_/{x}'}),
|
|
1088
|
+
'ext': ('ext', {str}),
|
|
1089
|
+
'filesize': ('url', {parse_qs}, 'clen', 0, {int_or_none}),
|
|
1090
|
+
}),
|
|
1091
|
+
**(extra_info or {}),
|
|
1092
|
+
}
|
|
1093
|
+
|
|
1063
1094
|
def _real_extract(self, url):
|
|
1064
1095
|
video_id, url_date, url_date_2 = self._match_valid_url(url).group('id', 'date', 'date2')
|
|
1065
1096
|
url_date = url_date or url_date_2
|
|
@@ -1090,17 +1121,14 @@ class YoutubeWebArchiveIE(InfoExtractor):
|
|
|
1090
1121
|
info['thumbnails'] = self._extract_thumbnails(video_id)
|
|
1091
1122
|
|
|
1092
1123
|
formats = []
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
'filesize': ('url', {parse_qs}, 'clen', 0, {int_or_none}),
|
|
1102
|
-
}),
|
|
1103
|
-
})
|
|
1124
|
+
if video_info.get('dmux'):
|
|
1125
|
+
for vf in traverse_obj(video_info, ('formats', 'video', lambda _, v: url_or_none(v['url']))):
|
|
1126
|
+
formats.append(self._parse_fmt(vf, {'acodec': 'none'}))
|
|
1127
|
+
for af in traverse_obj(video_info, ('formats', 'audio', lambda _, v: url_or_none(v['url']))):
|
|
1128
|
+
formats.append(self._parse_fmt(af, {'vcodec': 'none'}))
|
|
1129
|
+
else:
|
|
1130
|
+
for fmt in traverse_obj(video_info, ('formats', lambda _, v: url_or_none(v['url']))):
|
|
1131
|
+
formats.append(self._parse_fmt(fmt))
|
|
1104
1132
|
info['formats'] = formats
|
|
1105
1133
|
|
|
1106
1134
|
return info
|
yt_dlp/version.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Autogenerated by devscripts/update-version.py
|
|
2
2
|
|
|
3
|
-
__version__ = '2025.12.
|
|
3
|
+
__version__ = '2025.12.04.233042'
|
|
4
4
|
|
|
5
|
-
RELEASE_GIT_HEAD = '
|
|
5
|
+
RELEASE_GIT_HEAD = '7ec6b9bc40ee8a21b11cce83a09a07a37014062e'
|
|
6
6
|
|
|
7
7
|
VARIANT = 'pip'
|
|
8
8
|
|
|
@@ -12,4 +12,4 @@ CHANNEL = 'nightly'
|
|
|
12
12
|
|
|
13
13
|
ORIGIN = 'yt-dlp/yt-dlp-nightly-builds'
|
|
14
14
|
|
|
15
|
-
_pkg_version = '2025.12.
|
|
15
|
+
_pkg_version = '2025.12.04.233042dev'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: yt-dlp
|
|
3
|
-
Version: 2025.12.
|
|
3
|
+
Version: 2025.12.4.233042.dev0
|
|
4
4
|
Summary: A feature-rich command-line audio/video downloader
|
|
5
5
|
Project-URL: Documentation, https://github.com/yt-dlp/yt-dlp#readme
|
|
6
6
|
Project-URL: Repository, https://github.com/yt-dlp/yt-dlp
|
|
@@ -11,7 +11,7 @@ yt_dlp/options.py,sha256=Icc0JRiKOzITWoMujE_ihEmkCS-uCcie42XhIh8LvS4,100388
|
|
|
11
11
|
yt_dlp/plugins.py,sha256=EGmR0ydaahNspGrgszTNX4-YjHe93WOOhcw1gf6PZSs,8215
|
|
12
12
|
yt_dlp/socks.py,sha256=oAuAfWM6jxI8A5hHDLEKq2U2-k9NyMB_z6nrKzNE9fg,8936
|
|
13
13
|
yt_dlp/update.py,sha256=sY7gNFBQorzs7sEjRrqL5QOsTBNmGGa_FnpTtbxY1vA,25280
|
|
14
|
-
yt_dlp/version.py,sha256=
|
|
14
|
+
yt_dlp/version.py,sha256=h5SMPbyrWurCsxjBA0uxBzhfB5YV5QG-GrvnO4VodO4,360
|
|
15
15
|
yt_dlp/webvtt.py,sha256=ONkXaaNCZcX8pQhJn3iwIKyaQ34BtVDrMEdG6wRNZwM,11451
|
|
16
16
|
yt_dlp/__pyinstaller/__init__.py,sha256=-c4Zo8nQGKAm8wc_LDscxMtK7zr_YhZwRnC9CMruUBE,72
|
|
17
17
|
yt_dlp/__pyinstaller/hook-yt_dlp.py,sha256=5Rd0zV2pDskjY1KtT0wsjxv4hStx67sLCjUexsFvFus,1339
|
|
@@ -88,7 +88,7 @@ yt_dlp/extractor/aparat.py,sha256=GKbLlNAaZum69iendsx8O0Tk4iAIIWGagphg7yNci-k,33
|
|
|
88
88
|
yt_dlp/extractor/appleconnect.py,sha256=GxHmmMTqJshlUwK6XWDdKjmhzCmTrKwR41ugo3zwIuY,4286
|
|
89
89
|
yt_dlp/extractor/applepodcasts.py,sha256=SQ7LN6cWtc5yBltAQJNaPf-e0ud3p4pQBG36xNyOSpc,3363
|
|
90
90
|
yt_dlp/extractor/appletrailers.py,sha256=KgsL8wSKnoHIk0uotFx2WXhMuq8_gyQUdGWkse9Hvlw,10147
|
|
91
|
-
yt_dlp/extractor/archiveorg.py,sha256
|
|
91
|
+
yt_dlp/extractor/archiveorg.py,sha256=6WdpILvCH1vzY-pzwJeCCE1o6zylMPfTWMc7GwEjsRw,58263
|
|
92
92
|
yt_dlp/extractor/arcpublishing.py,sha256=z9MAcLu6r72fPeVaKKCPN0a70rzI6iSGB4gPJ2HZVeI,8170
|
|
93
93
|
yt_dlp/extractor/ard.py,sha256=Q0v-Dca1QMgboPVrP0IBJTs7y9bT5QXaJY2q3LJSteU,34242
|
|
94
94
|
yt_dlp/extractor/arnes.py,sha256=ndBhmlCxtLDBzXE6wKuMry3vtNGkVywmg5scXfqmTuk,3497
|
|
@@ -1122,13 +1122,13 @@ yt_dlp/utils/progress.py,sha256=t9kVvJ0oWuEqRzo9fdFbIhHUBtO_8mg348QwZ1faqLo,3261
|
|
|
1122
1122
|
yt_dlp/utils/traversal.py,sha256=64E3RcZ56iSX50RI_HbKdDNftkETMLBaEPX791_b7yQ,18265
|
|
1123
1123
|
yt_dlp/utils/jslib/__init__.py,sha256=CbdJiRA7Eh5PnjF2V4lDTcg0J0XjBMaaq0H4pCfq9Tk,87
|
|
1124
1124
|
yt_dlp/utils/jslib/devalue.py,sha256=7DCGK_zUN0ZeV5hwPT06zaRMUxX_hyUyFWqs79rxw24,5621
|
|
1125
|
-
yt_dlp-2025.12.
|
|
1126
|
-
yt_dlp-2025.12.
|
|
1127
|
-
yt_dlp-2025.12.
|
|
1128
|
-
yt_dlp-2025.12.
|
|
1129
|
-
yt_dlp-2025.12.
|
|
1130
|
-
yt_dlp-2025.12.
|
|
1131
|
-
yt_dlp-2025.12.
|
|
1132
|
-
yt_dlp-2025.12.
|
|
1133
|
-
yt_dlp-2025.12.
|
|
1134
|
-
yt_dlp-2025.12.
|
|
1125
|
+
yt_dlp-2025.12.4.233042.dev0.data/data/share/bash-completion/completions/yt-dlp,sha256=b0pb9GLseKD27CjnLE6LlhVxhfmQjmyqV6r_CRbd6ko,5989
|
|
1126
|
+
yt_dlp-2025.12.4.233042.dev0.data/data/share/doc/yt_dlp/README.txt,sha256=Bgx271dvWVM7TqhGKdrgqQGXSJmlvO678jfyNC6aCJA,164826
|
|
1127
|
+
yt_dlp-2025.12.4.233042.dev0.data/data/share/fish/vendor_completions.d/yt-dlp.fish,sha256=hLa6lZnm7keENpNCjml9A88hbvefdsdoOpAiaNCVyHo,51488
|
|
1128
|
+
yt_dlp-2025.12.4.233042.dev0.data/data/share/man/man1/yt-dlp.1,sha256=EfXpaxlohoxUn8X5ROJ0THnppGch3vy9bXOPsKPs3Bw,159331
|
|
1129
|
+
yt_dlp-2025.12.4.233042.dev0.data/data/share/zsh/site-functions/_yt-dlp,sha256=pNhu8tT4ZKrksLRI2mXLqarzGGhnOlm_hkCBVhSxLzg,5985
|
|
1130
|
+
yt_dlp-2025.12.4.233042.dev0.dist-info/METADATA,sha256=KrHbZGBKrm9rtvEdPyUCnAM_gDUGGmVdDr8EJ862XhQ,180215
|
|
1131
|
+
yt_dlp-2025.12.4.233042.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
1132
|
+
yt_dlp-2025.12.4.233042.dev0.dist-info/entry_points.txt,sha256=vWfetvzYgZIwDfMW6BjCe0Cy4pmTZEXRNzxAkfYlRJA,103
|
|
1133
|
+
yt_dlp-2025.12.4.233042.dev0.dist-info/licenses/LICENSE,sha256=fhLl30uuEsshWBuhV87SDhmGoFCN0Q0Oikq5pM-U6Fw,1211
|
|
1134
|
+
yt_dlp-2025.12.4.233042.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{yt_dlp-2025.12.3.233056.dev0.data → yt_dlp-2025.12.4.233042.dev0.data}/data/share/man/man1/yt-dlp.1
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{yt_dlp-2025.12.3.233056.dev0.dist-info → yt_dlp-2025.12.4.233042.dev0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|