From 65141660aba62fefb1901804aeb0484992243af7 Mon Sep 17 00:00:00 2001 From: coletdjnz Date: Tue, 7 Jun 2022 12:25:37 +1200 Subject: [PATCH] [extractor/youtube] Fix bug in b7c47b743871cdf3e0de75b17e4454d987384bf9 Closes #3997 Authored by: coletdjnz --- yt_dlp/extractor/youtube.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py index c8541c664..113b9aa07 100644 --- a/yt_dlp/extractor/youtube.py +++ b/yt_dlp/extractor/youtube.py @@ -475,13 +475,8 @@ class YoutubeBaseInfoExtractor(InfoExtractor): data=json.dumps(data).encode('utf8'), headers=real_headers, query={'key': api_key or self._extract_api_key(), 'prettyPrint': 'false'}) - def extract_yt_initial_data(self, item_id, webpage): - return self._search_json(self._YT_INITIAL_DATA_RE, webpage, 'yt initial data', item_id, fatal=True) - - def _extract_yt_initial_variable(self, webpage, regex, video_id, name): - return self._parse_json(self._search_regex( - (fr'{regex}\s*{self._YT_INITIAL_BOUNDARY_RE}', - regex), webpage, name, default='{}'), video_id, fatal=False, lenient=True) + def extract_yt_initial_data(self, item_id, webpage, fatal=True): + return self._search_json(self._YT_INITIAL_DATA_RE, webpage, 'yt initial data', item_id, fatal=fatal) @staticmethod def _extract_session_index(*data):