1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-04-04 14:10:17 -05:00

[ie/youtube] Fix PhantomJS nsig fallback (#12728)

Also fixes the NSigDeno plugin

Closes #12724
Authored by: bashonly
This commit is contained in:
bashonly 2025-03-24 16:22:25 -05:00 committed by GitHub
parent b9c979461b
commit 4054a2b623
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2190,7 +2190,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
global_var, varname, _ = self._extract_player_js_global_var(full_code)
if global_var:
self.write_debug(f'Prepending n function code with global array variable "{varname}"')
code = global_var + ', ' + code
code = global_var + '; ' + code
else:
self.write_debug('No global array variable found in player JS')
return argnames, re.sub(
@ -2199,7 +2199,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
def _extract_n_function_code(self, video_id, player_url):
player_id = self._extract_player_info(player_url)
func_code = self.cache.load('youtube-nsig', player_id, min_ver='2025.03.21')
func_code = self.cache.load('youtube-nsig', player_id, min_ver='2025.03.24')
jscode = func_code or self._load_player(video_id, player_url)
jsi = JSInterpreter(jscode)