yt-dlp 2026.1.31.233334.dev0__py3-none-any.whl → 2026.2.3.233612.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.
@@ -5862,7 +5862,7 @@ class UnsupportedInfoExtractor(LazyLoadExtractor):
5862
5862
  class KnownDRMIE(UnsupportedInfoExtractor):
5863
5863
  _module = 'yt_dlp.extractor.unsupported'
5864
5864
  IE_NAME = 'DRM'
5865
- _VALID_URL = 'https?://(?:www\\.)?(?:play\\.hbomax\\.com|channel(?:4|5)\\.com|peacocktv\\.com|(?:[\\w.]+\\.)?disneyplus\\.com|open\\.spotify\\.com|tvnz\\.co\\.nz|oneplus\\.ch|artstation\\.com/learning/courses|philo\\.com|(?:[\\w.]+\\.)?mech-plus\\.com|aha\\.video|mubi\\.com|vootkids\\.com|nowtv\\.it/watch|tv\\.apple\\.com|primevideo\\.com|hulu\\.com|resource\\.inkryptvideos\\.com|joyn\\.de|amazon\\.(?:\\w{2}\\.)?\\w+/gp/video|music\\.amazon\\.(?:\\w{2}\\.)?\\w+|(?:watch|front)\\.njpwworld\\.com|qub\\.ca/vrai|(?:beta\\.)?crunchyroll\\.com|viki\\.com|deezer\\.com|b-ch\\.com|ctv\\.ca|noovo\\.ca|tsn\\.ca|paramountplus\\.com|(?:m\\.)?(?:sony)?crackle\\.com|cw(?:tv(?:pr)?|seed)\\.com|6play\\.fr|rtlplay\\.be|play\\.rtl\\.hr|rtlmost\\.hu|plus\\.rtl\\.de(?!/podcast/)|mediasetinfinity\\.es|tv5mondeplus\\.com)'
5865
+ _VALID_URL = 'https?://(?:www\\.)?(?:play\\.hbomax\\.com|channel(?:4|5)\\.com|peacocktv\\.com|(?:[\\w.]+\\.)?disneyplus\\.com|open\\.spotify\\.com|tvnz\\.co\\.nz|oneplus\\.ch|artstation\\.com/learning/courses|philo\\.com|(?:[\\w.]+\\.)?mech-plus\\.com|aha\\.video|mubi\\.com|vootkids\\.com|nowtv\\.it/watch|tv\\.apple\\.com|primevideo\\.com|hulu\\.com|resource\\.inkryptvideos\\.com|joyn\\.de|amazon\\.(?:\\w{2}\\.)?\\w+/gp/video|music\\.amazon\\.(?:\\w{2}\\.)?\\w+|(?:watch|front)\\.njpwworld\\.com|qub\\.ca/vrai|(?:beta\\.)?crunchyroll\\.com|viki\\.com|deezer\\.com|b-ch\\.com|ctv\\.ca|noovo\\.ca|tsn\\.ca|paramountplus\\.com|(?:m\\.)?(?:sony)?crackle\\.com|cw(?:tv(?:pr)?|seed)\\.com|6play\\.fr|rtlplay\\.be|play\\.rtl\\.hr|rtlmost\\.hu|plus\\.rtl\\.de(?!/podcast/)|mediasetinfinity\\.es|tv5mondeplus\\.com|tv\\.rakuten\\.co\\.jp|watch\\.telusoriginals\\.com|video\\.unext\\.jp|www\\.web\\.nhk)'
5866
5866
  IE_DESC = False
5867
5867
 
5868
5868
 
@@ -67,6 +67,10 @@ class KnownDRMIE(UnsupportedInfoExtractor):
67
67
  r'plus\.rtl\.de(?!/podcast/)',
68
68
  r'mediasetinfinity\.es',
69
69
  r'tv5mondeplus\.com',
70
+ r'tv\.rakuten\.co\.jp',
71
+ r'watch\.telusoriginals\.com',
72
+ r'video\.unext\.jp',
73
+ r'www\.web\.nhk',
70
74
  )
71
75
 
72
76
  _TESTS = [{
@@ -231,6 +235,23 @@ class KnownDRMIE(UnsupportedInfoExtractor):
231
235
  # https://github.com/yt-dlp/yt-dlp/issues/14743
232
236
  'url': 'https://www.tv5mondeplus.com/',
233
237
  'only_matching': True,
238
+ }, {
239
+ # https://github.com/yt-dlp/yt-dlp/issues/8821
240
+ 'url': 'https://tv.rakuten.co.jp/content/519554/',
241
+ 'only_matching': True,
242
+ }, {
243
+ # https://github.com/yt-dlp/yt-dlp/issues/9851
244
+ 'url': 'https://watch.telusoriginals.com/play?assetID=fruit-is-ripe',
245
+ 'only_matching': True,
246
+ }, {
247
+ # https://github.com/yt-dlp/yt-dlp/issues/13220
248
+ # https://github.com/yt-dlp/yt-dlp/issues/14564
249
+ 'url': 'https://video.unext.jp/play/SID0062010/ED00337407',
250
+ 'only_matching': True,
251
+ }, {
252
+ # https://github.com/yt-dlp/yt-dlp/issues/14620
253
+ 'url': 'https://www.web.nhk/tv/an/72hours/pl/series-tep-W3W8WRN8M3/ep/QW8ZY6146V',
254
+ 'only_matching': True,
234
255
  }]
235
256
 
236
257
  def _real_extract(self, url):
@@ -1879,7 +1879,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
1879
1879
  }]
1880
1880
 
1881
1881
  _DEFAULT_PLAYER_JS_VERSION = 'actual'
1882
- _DEFAULT_PLAYER_JS_VARIANT = 'main'
1882
+ _DEFAULT_PLAYER_JS_VARIANT = 'tv'
1883
1883
  _PLAYER_JS_VARIANT_MAP = {
1884
1884
  'main': 'player_ias.vflset/en_US/base.js',
1885
1885
  'tcc': 'player_ias_tcc.vflset/en_US/base.js',
yt_dlp/version.py CHANGED
@@ -1,8 +1,8 @@
1
1
  # Autogenerated by devscripts/update-version.py
2
2
 
3
- __version__ = '2026.01.31.233334'
3
+ __version__ = '2026.02.03.233612'
4
4
 
5
- RELEASE_GIT_HEAD = '8eb794366eb69e7377ff88eed7929c00195c8d74'
5
+ RELEASE_GIT_HEAD = 'c677d866d41eb4075b0a5e0c944a6543fc13f15d'
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 = '2026.01.31.233334dev'
15
+ _pkg_version = '2026.02.03.233612dev'
@@ -2345,9 +2345,9 @@ youtube
2345
2345
  Will overwrite any default ones set by yt-dlp.
2346
2346
  - player_js_variant: The player javascript variant to use for n/sig
2347
2347
  deciphering. The known variants are: main, tcc, tce, es5, es6, tv,
2348
- tv_es6, phone, tablet. The default is main, and the others are for
2349
- debugging purposes. You can use actual to go with what is prescribed
2350
- by the site
2348
+ tv_es6, phone. The default is tv, and the others are for debugging
2349
+ purposes. You can use actual to go with what is prescribed by the
2350
+ site
2351
2351
  - player_js_version: The player javascript version to use for n/sig
2352
2352
  deciphering, in the format of signature_timestamp@hash (e.g.
2353
2353
  20348@0004de42). The default is to use what is prescribed by the
@@ -2763,9 +2763,8 @@ Will overwrite any default ones set by yt-dlp.
2763
2763
  n/sig deciphering.
2764
2764
  The known variants are: \f[V]main\f[R], \f[V]tcc\f[R], \f[V]tce\f[R],
2765
2765
  \f[V]es5\f[R], \f[V]es6\f[R], \f[V]tv\f[R], \f[V]tv_es6\f[R],
2766
- \f[V]phone\f[R], \f[V]tablet\f[R].
2767
- The default is \f[V]main\f[R], and the others are for debugging
2768
- purposes.
2766
+ \f[V]phone\f[R].
2767
+ The default is \f[V]tv\f[R], and the others are for debugging purposes.
2769
2768
  You can use \f[V]actual\f[R] to go with what is prescribed by the site
2770
2769
  .IP \[bu] 2
2771
2770
  \f[V]player_js_version\f[R]: The player javascript version to use for
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yt-dlp
3
- Version: 2026.1.31.233334.dev0
3
+ Version: 2026.2.3.233612.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
@@ -1938,7 +1938,7 @@ The following extractors use this feature:
1938
1938
  * `player_skip`: Skip some network requests that are generally needed for robust extraction. One or more of `configs` (skip client configs), `webpage` (skip initial webpage), `js` (skip js player), `initial_data` (skip initial data/next ep request). While these options can help reduce the number of requests needed or avoid some rate-limiting, they could cause issues such as missing formats or metadata. See [#860](https://github.com/yt-dlp/yt-dlp/pull/860) and [#12826](https://github.com/yt-dlp/yt-dlp/issues/12826) for more details
1939
1939
  * `webpage_skip`: Skip extraction of embedded webpage data. One or both of `player_response`, `initial_data`. These options are for testing purposes and don't skip any network requests
1940
1940
  * `player_params`: YouTube player parameters to use for player requests. Will overwrite any default ones set by yt-dlp.
1941
- * `player_js_variant`: The player javascript variant to use for n/sig deciphering. The known variants are: `main`, `tcc`, `tce`, `es5`, `es6`, `tv`, `tv_es6`, `phone`, `tablet`. The default is `main`, and the others are for debugging purposes. You can use `actual` to go with what is prescribed by the site
1941
+ * `player_js_variant`: The player javascript variant to use for n/sig deciphering. The known variants are: `main`, `tcc`, `tce`, `es5`, `es6`, `tv`, `tv_es6`, `phone`. The default is `tv`, and the others are for debugging purposes. You can use `actual` to go with what is prescribed by the site
1942
1942
  * `player_js_version`: The player javascript version to use for n/sig deciphering, in the format of `signature_timestamp@hash` (e.g. `20348@0004de42`). The default is to use what is prescribed by the site, and can be selected with `actual`
1943
1943
  * `comment_sort`: `top` or `new` (default) - choose comment sorting mode (on YouTube's side)
1944
1944
  * `max_comments`: Limit the amount of comments to gather. Comma-separated list of integers representing `max-comments,max-parents,max-replies,max-replies-per-thread,max-depth`. Default is `all,all,all,all,all`
@@ -11,7 +11,7 @@ yt_dlp/options.py,sha256=-PQ5DyRSIU9YBSG2oh0RTHC-eg4EewNt4zewTZTuERM,100632
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=DfZBPW9slEZUFiVNnFARO7p8WQ-0odNWBfw-b3EpXQ8,360
14
+ yt_dlp/version.py,sha256=9dTdpWU8zBD7GYr5KOpRl-KqFnuaDJieEJUckXtgLGU,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
@@ -462,7 +462,7 @@ yt_dlp/extractor/la7.py,sha256=GShDLu1N0rS1bY4uIiUkznThvn7gNiwtSgmh7Rs7t08,9435
462
462
  yt_dlp/extractor/laracasts.py,sha256=PzTqAbHXiUqog-mpp2qR_rpKa-sZel4mLyzWTPkbDuc,4587
463
463
  yt_dlp/extractor/lastfm.py,sha256=OpmE-Y-2rcav2r2xaDQzX_EJiltmbbe6fO9VzkLqNWQ,4748
464
464
  yt_dlp/extractor/laxarxames.py,sha256=-YyL-5y4t2L9ptTSLXhvK-SJwvXGqv5l1HfT129zF0c,2773
465
- yt_dlp/extractor/lazy_extractors.py,sha256=RG7yAhhS02_X8SRsTxP11pWNAb-3JV665B0ZcNxDEoE,815481
465
+ yt_dlp/extractor/lazy_extractors.py,sha256=m2ConGzCKoWoIfuBGtZdxkIFLVWpP5XeyEmd9S07SNI,815568
466
466
  yt_dlp/extractor/lbry.py,sha256=veeChelvfuFiNCeHhqYLEqR8X5mcmxevaekmZgoJk-Q,18112
467
467
  yt_dlp/extractor/lci.py,sha256=_0XuoITIt_QFA-6eBNpDXZZfouwUWfcdHQlpAOuiLEs,2131
468
468
  yt_dlp/extractor/lcp.py,sha256=edMA8L-eJZLquDvHcSY4oFWI0C8yGgjqW1tmhhLMJ5U,2279
@@ -952,7 +952,7 @@ yt_dlp/extractor/umg.py,sha256=FF2Wz1ay_f6hxPIq-8jaFKGqAtLUNPlBTLA-x0mkwI0,2240
952
952
  yt_dlp/extractor/unistra.py,sha256=z1zkou5gHYyf9NQiALCcgtSQigbKicNlo-Xiq7G_pO0,2078
953
953
  yt_dlp/extractor/unitednations.py,sha256=qFB_vRls1Sw5pJbQ16W6yKGy_IwbvgLwvcGsXm-D7BE,1289
954
954
  yt_dlp/extractor/unity.py,sha256=huqyb02vbyBqiFR52bPtxV5b_YTK-PBwvKY8DR88JHo,1209
955
- yt_dlp/extractor/unsupported.py,sha256=rk93fV90msTF3aNf9wvw5OHNTXoYzXRqnIWifIHUXyA,10325
955
+ yt_dlp/extractor/unsupported.py,sha256=8Ce-GqKdEdjVwzfRJG8WX_TyZTye2g0hzXm_V6-68GI,11185
956
956
  yt_dlp/extractor/uol.py,sha256=kWFdi9XLelDpc2bpooKYUIDchndGY4SJmkjPhyXEt6w,5307
957
957
  yt_dlp/extractor/uplynk.py,sha256=cJLFlmC4nD8zv7gYBO61j65M4ntvs8NM4My4wxloRVA,3352
958
958
  yt_dlp/extractor/urort.py,sha256=LSk-RJsTH03x-7whkdvNRRAGofARl4bKXeyIzzSqnBQ,2136
@@ -1069,7 +1069,7 @@ yt_dlp/extractor/youtube/_notifications.py,sha256=1nhavzW0e2QWFAWHkfbTU4sSXNp4vU
1069
1069
  yt_dlp/extractor/youtube/_redirect.py,sha256=WWWnGEkfSGBXpZFi_bWY4XcHZ8PDeK7UsndDaTYYhQg,9005
1070
1070
  yt_dlp/extractor/youtube/_search.py,sha256=E9raTPGjUD6mm81WBpT4AsaxyiTBHdNssgzeHwVeNOE,6552
1071
1071
  yt_dlp/extractor/youtube/_tab.py,sha256=MiQGWZdHENOz8Ac-OAuAgqMWJ6gC-PZKJWPDG80QY6E,115490
1072
- yt_dlp/extractor/youtube/_video.py,sha256=7m1I1E8HJzTpPlmpIbr_Gf5mH-Z7gJwSJ1KFCRTihfY,215203
1072
+ yt_dlp/extractor/youtube/_video.py,sha256=8rBc4Q9ztXbqfqH6jSnffSyjV50M1lFh0lKf856CDUI,215201
1073
1073
  yt_dlp/extractor/youtube/jsc/__init__.py,sha256=HaVFP8ikrLaE-ClAh39-S28WCF4S2KTRaSu7QvA28E8,289
1074
1074
  yt_dlp/extractor/youtube/jsc/_director.py,sha256=92pB-KVSs6plmE5R8gpjkZL9aeoWNR0XTnGOBXMy9go,13167
1075
1075
  yt_dlp/extractor/youtube/jsc/_registry.py,sha256=Vg9GkHKHKKPeRfUQ-XSw01mfx_2Xyodh0SJpwjawYCA,102
@@ -1125,13 +1125,13 @@ yt_dlp/utils/progress.py,sha256=t9kVvJ0oWuEqRzo9fdFbIhHUBtO_8mg348QwZ1faqLo,3261
1125
1125
  yt_dlp/utils/traversal.py,sha256=64E3RcZ56iSX50RI_HbKdDNftkETMLBaEPX791_b7yQ,18265
1126
1126
  yt_dlp/utils/jslib/__init__.py,sha256=CbdJiRA7Eh5PnjF2V4lDTcg0J0XjBMaaq0H4pCfq9Tk,87
1127
1127
  yt_dlp/utils/jslib/devalue.py,sha256=UtcQ1IEzt6HWBjB9Z_6rJMb3y2pFrbHXDNu1rrxXF1c,5583
1128
- yt_dlp-2026.1.31.233334.dev0.data/data/share/bash-completion/completions/yt-dlp,sha256=KKMwJ7JkH-B2rXIR9n4wAHTqn5waHyxzPtVmsMoYkDI,6009
1129
- yt_dlp-2026.1.31.233334.dev0.data/data/share/doc/yt_dlp/README.txt,sha256=RaOzbvZ4Up2CAVzoHjSuRqAko7V0lHuqZQzB9bG0sU4,166287
1130
- yt_dlp-2026.1.31.233334.dev0.data/data/share/fish/vendor_completions.d/yt-dlp.fish,sha256=L0JADRod-4ew2pvmYGiDUuXFgu1Ac8msk-ackiLYHCo,51632
1131
- yt_dlp-2026.1.31.233334.dev0.data/data/share/man/man1/yt-dlp.1,sha256=xvbEpRDjgBqlo4HfojCIgfnxH8IHF53KY1QYW_jJGG4,160924
1132
- yt_dlp-2026.1.31.233334.dev0.data/data/share/zsh/site-functions/_yt-dlp,sha256=VsiR8Dn2RqbVSZHAqQyDtTfrc3BIBdzwgrcaJqux8kQ,6005
1133
- yt_dlp-2026.1.31.233334.dev0.dist-info/METADATA,sha256=o9kY9gVrIFLKcrUP9nIGOC5MulqdyQu9hIUCbhhzQic,182040
1134
- yt_dlp-2026.1.31.233334.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
1135
- yt_dlp-2026.1.31.233334.dev0.dist-info/entry_points.txt,sha256=vWfetvzYgZIwDfMW6BjCe0Cy4pmTZEXRNzxAkfYlRJA,103
1136
- yt_dlp-2026.1.31.233334.dev0.dist-info/licenses/LICENSE,sha256=fhLl30uuEsshWBuhV87SDhmGoFCN0Q0Oikq5pM-U6Fw,1211
1137
- yt_dlp-2026.1.31.233334.dev0.dist-info/RECORD,,
1128
+ yt_dlp-2026.2.3.233612.dev0.data/data/share/bash-completion/completions/yt-dlp,sha256=KKMwJ7JkH-B2rXIR9n4wAHTqn5waHyxzPtVmsMoYkDI,6009
1129
+ yt_dlp-2026.2.3.233612.dev0.data/data/share/doc/yt_dlp/README.txt,sha256=b347lotRjJYdLoLPAlM4T7L3curBwJ2Qf42PagegIew,166277
1130
+ yt_dlp-2026.2.3.233612.dev0.data/data/share/fish/vendor_completions.d/yt-dlp.fish,sha256=L0JADRod-4ew2pvmYGiDUuXFgu1Ac8msk-ackiLYHCo,51632
1131
+ yt_dlp-2026.2.3.233612.dev0.data/data/share/man/man1/yt-dlp.1,sha256=lRXnoZWNS-p0UH7MyPYsJ_XxJ63DpnSFwR1rJeFB6ZE,160904
1132
+ yt_dlp-2026.2.3.233612.dev0.data/data/share/zsh/site-functions/_yt-dlp,sha256=VsiR8Dn2RqbVSZHAqQyDtTfrc3BIBdzwgrcaJqux8kQ,6005
1133
+ yt_dlp-2026.2.3.233612.dev0.dist-info/METADATA,sha256=N2yI1DY290w3k4B3b9HUN-DiYp_SO6opDdNFoZP_pxw,182027
1134
+ yt_dlp-2026.2.3.233612.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
1135
+ yt_dlp-2026.2.3.233612.dev0.dist-info/entry_points.txt,sha256=vWfetvzYgZIwDfMW6BjCe0Cy4pmTZEXRNzxAkfYlRJA,103
1136
+ yt_dlp-2026.2.3.233612.dev0.dist-info/licenses/LICENSE,sha256=fhLl30uuEsshWBuhV87SDhmGoFCN0Q0Oikq5pM-U6Fw,1211
1137
+ yt_dlp-2026.2.3.233612.dev0.dist-info/RECORD,,