yt-dlp 2025.12.13.232949.dev0__py3-none-any.whl → 2025.12.15.233113.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/youtube/_tab.py +2 -5
- yt_dlp/version.py +3 -3
- {yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/METADATA +1 -1
- {yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/RECORD +12 -12
- {yt_dlp-2025.12.13.232949.dev0.data → yt_dlp-2025.12.15.233113.dev0.data}/data/share/bash-completion/completions/yt-dlp +0 -0
- {yt_dlp-2025.12.13.232949.dev0.data → yt_dlp-2025.12.15.233113.dev0.data}/data/share/doc/yt_dlp/README.txt +0 -0
- {yt_dlp-2025.12.13.232949.dev0.data → yt_dlp-2025.12.15.233113.dev0.data}/data/share/fish/vendor_completions.d/yt-dlp.fish +0 -0
- {yt_dlp-2025.12.13.232949.dev0.data → yt_dlp-2025.12.15.233113.dev0.data}/data/share/man/man1/yt-dlp.1 +0 -0
- {yt_dlp-2025.12.13.232949.dev0.data → yt_dlp-2025.12.15.233113.dev0.data}/data/share/zsh/site-functions/_yt-dlp +0 -0
- {yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/WHEEL +0 -0
- {yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/entry_points.txt +0 -0
- {yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/licenses/LICENSE +0 -0
yt_dlp/extractor/youtube/_tab.py
CHANGED
|
@@ -382,7 +382,8 @@ class YoutubeTabBaseInfoExtractor(YoutubeBaseInfoExtractor):
|
|
|
382
382
|
('accessibilityText', {lambda x: re.fullmatch(r'(.+), (?:[\d,.]+(?:[KM]| million)?|No) views? - play Short', x)}, 1)), any),
|
|
383
383
|
'view_count': ('overlayMetadata', 'secondaryText', 'content', {parse_count}),
|
|
384
384
|
}),
|
|
385
|
-
thumbnails=self._extract_thumbnails(
|
|
385
|
+
thumbnails=self._extract_thumbnails(
|
|
386
|
+
renderer, ('thumbnailViewModel', 'thumbnailViewModel', 'image'), final_key='sources'))
|
|
386
387
|
return
|
|
387
388
|
|
|
388
389
|
def _video_entry(self, video_renderer):
|
|
@@ -1585,7 +1586,6 @@ class YoutubeTabIE(YoutubeTabBaseInfoExtractor):
|
|
|
1585
1586
|
'playlist_count': 50,
|
|
1586
1587
|
'expected_warnings': ['YouTube Music is not directly supported'],
|
|
1587
1588
|
}, {
|
|
1588
|
-
# TODO: fix test suite, 208163447408c78673b08c172beafe5c310fb167 broke this test
|
|
1589
1589
|
'note': 'unlisted single video playlist',
|
|
1590
1590
|
'url': 'https://www.youtube.com/playlist?list=PLt5yu3-wZAlQLfIN0MMgp0wVV6MP3bM4_',
|
|
1591
1591
|
'info_dict': {
|
|
@@ -1885,8 +1885,6 @@ class YoutubeTabIE(YoutubeTabBaseInfoExtractor):
|
|
|
1885
1885
|
'playlist_mincount': 30,
|
|
1886
1886
|
}, {
|
|
1887
1887
|
# Shorts url result in shorts tab
|
|
1888
|
-
# TODO: Fix channel id extraction
|
|
1889
|
-
# TODO: fix test suite, 208163447408c78673b08c172beafe5c310fb167 broke this test
|
|
1890
1888
|
'url': 'https://www.youtube.com/channel/UCiu-3thuViMebBjw_5nWYrA/shorts',
|
|
1891
1889
|
'info_dict': {
|
|
1892
1890
|
'id': 'UCiu-3thuViMebBjw_5nWYrA',
|
|
@@ -1915,7 +1913,6 @@ class YoutubeTabIE(YoutubeTabBaseInfoExtractor):
|
|
|
1915
1913
|
'params': {'extract_flat': True},
|
|
1916
1914
|
}, {
|
|
1917
1915
|
# Live video status should be extracted
|
|
1918
|
-
# TODO: fix test suite, 208163447408c78673b08c172beafe5c310fb167 broke this test
|
|
1919
1916
|
'url': 'https://www.youtube.com/channel/UCQvWX73GQygcwXOTSf_VDVg/live',
|
|
1920
1917
|
'info_dict': {
|
|
1921
1918
|
'id': 'UCQvWX73GQygcwXOTSf_VDVg',
|
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.15.233113'
|
|
4
4
|
|
|
5
|
-
RELEASE_GIT_HEAD = '
|
|
5
|
+
RELEASE_GIT_HEAD = 'ff61bef041d1f69fec1044f783fb938c005128af'
|
|
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.15.233113dev'
|
{yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: yt-dlp
|
|
3
|
-
Version: 2025.12.
|
|
3
|
+
Version: 2025.12.15.233113.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=cEALlBE-OokSe0xGY5pHsLozTJpw-yR9pSVBCNp2SqI,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=j3Ez-qwOSuqnc7p8F7qNI9X-9nrVv7QVrphH-OmXfQ0,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
|
|
@@ -1066,7 +1066,7 @@ yt_dlp/extractor/youtube/_mistakes.py,sha256=bLrxlAYqdR0mTuCLoMmJHh15BHuhxfHXeQF
|
|
|
1066
1066
|
yt_dlp/extractor/youtube/_notifications.py,sha256=1nhavzW0e2QWFAWHkfbTU4sSXNp4vUbGFygYNSgbxBE,4585
|
|
1067
1067
|
yt_dlp/extractor/youtube/_redirect.py,sha256=WWWnGEkfSGBXpZFi_bWY4XcHZ8PDeK7UsndDaTYYhQg,9005
|
|
1068
1068
|
yt_dlp/extractor/youtube/_search.py,sha256=E9raTPGjUD6mm81WBpT4AsaxyiTBHdNssgzeHwVeNOE,6552
|
|
1069
|
-
yt_dlp/extractor/youtube/_tab.py,sha256=
|
|
1069
|
+
yt_dlp/extractor/youtube/_tab.py,sha256=MiQGWZdHENOz8Ac-OAuAgqMWJ6gC-PZKJWPDG80QY6E,115490
|
|
1070
1070
|
yt_dlp/extractor/youtube/_video.py,sha256=m7x1HtlqCmuQFaExYrKazSPzDxPSnYeVdEIRevrHbps,209795
|
|
1071
1071
|
yt_dlp/extractor/youtube/jsc/__init__.py,sha256=HaVFP8ikrLaE-ClAh39-S28WCF4S2KTRaSu7QvA28E8,289
|
|
1072
1072
|
yt_dlp/extractor/youtube/jsc/_director.py,sha256=92pB-KVSs6plmE5R8gpjkZL9aeoWNR0XTnGOBXMy9go,13167
|
|
@@ -1123,13 +1123,13 @@ yt_dlp/utils/progress.py,sha256=t9kVvJ0oWuEqRzo9fdFbIhHUBtO_8mg348QwZ1faqLo,3261
|
|
|
1123
1123
|
yt_dlp/utils/traversal.py,sha256=64E3RcZ56iSX50RI_HbKdDNftkETMLBaEPX791_b7yQ,18265
|
|
1124
1124
|
yt_dlp/utils/jslib/__init__.py,sha256=CbdJiRA7Eh5PnjF2V4lDTcg0J0XjBMaaq0H4pCfq9Tk,87
|
|
1125
1125
|
yt_dlp/utils/jslib/devalue.py,sha256=7DCGK_zUN0ZeV5hwPT06zaRMUxX_hyUyFWqs79rxw24,5621
|
|
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.
|
|
1135
|
-
yt_dlp-2025.12.
|
|
1126
|
+
yt_dlp-2025.12.15.233113.dev0.data/data/share/bash-completion/completions/yt-dlp,sha256=b0pb9GLseKD27CjnLE6LlhVxhfmQjmyqV6r_CRbd6ko,5989
|
|
1127
|
+
yt_dlp-2025.12.15.233113.dev0.data/data/share/doc/yt_dlp/README.txt,sha256=wmrt5znP_AlvkrvysScvz2QYyjT2kZ1y2RRmx0Qvy_U,164886
|
|
1128
|
+
yt_dlp-2025.12.15.233113.dev0.data/data/share/fish/vendor_completions.d/yt-dlp.fish,sha256=v2WQvWvk4qKpp2-97z2ULb5Msj5dgzU6nMkS-FwSmbM,51488
|
|
1129
|
+
yt_dlp-2025.12.15.233113.dev0.data/data/share/man/man1/yt-dlp.1,sha256=9Ll8XNcxtpdL-FmhXtOrDy3OuGmOCatIKNDzmwxzqxo,159421
|
|
1130
|
+
yt_dlp-2025.12.15.233113.dev0.data/data/share/zsh/site-functions/_yt-dlp,sha256=pNhu8tT4ZKrksLRI2mXLqarzGGhnOlm_hkCBVhSxLzg,5985
|
|
1131
|
+
yt_dlp-2025.12.15.233113.dev0.dist-info/METADATA,sha256=lmxwuH8uaKPF_oK_dPyE3eclFej2ftR5hLWVlz4iJGo,180282
|
|
1132
|
+
yt_dlp-2025.12.15.233113.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
1133
|
+
yt_dlp-2025.12.15.233113.dev0.dist-info/entry_points.txt,sha256=vWfetvzYgZIwDfMW6BjCe0Cy4pmTZEXRNzxAkfYlRJA,103
|
|
1134
|
+
yt_dlp-2025.12.15.233113.dev0.dist-info/licenses/LICENSE,sha256=fhLl30uuEsshWBuhV87SDhmGoFCN0Q0Oikq5pM-U6Fw,1211
|
|
1135
|
+
yt_dlp-2025.12.15.233113.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{yt_dlp-2025.12.13.232949.dev0.dist-info → yt_dlp-2025.12.15.233113.dev0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|