1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-29 21:57:50 +00:00

[jsinterp] Fix _separate

Ref: https://github.com/yt-dlp/yt-dlp/issues/4635#issuecomment-1231126941
This commit is contained in:
pukkandan
2022-08-30 15:57:17 +05:30
parent 224b5a35f7
commit c4b2df872d
4 changed files with 8 additions and 4 deletions

View File

@@ -2670,7 +2670,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, after='2022.08.19')
func_code = self.cache.load('youtube-nsig', player_id, after='2022.08.19.1')
jscode = func_code or self._load_player(video_id, player_url)
jsi = JSInterpreter(jscode)