Skip to content

Commit

Permalink
[extractor/youtube] Handle incomplete initial data from watch page (#…
Browse files Browse the repository at this point in the history
…6510)

Authored by: coletdjnz
  • Loading branch information
coletdjnz committed Mar 13, 2023
1 parent 98ac902 commit 607510b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion yt_dlp/extractor/youtube.py
Expand Up @@ -4254,12 +4254,15 @@ def process_language(container, base_url, lang_code, sub_name, query):
initial_data = None
if webpage:
initial_data = self.extract_yt_initial_data(video_id, webpage, fatal=False)
if not traverse_obj(initial_data, 'contents'):
self.report_warning('Incomplete data received in embedded initial data; re-fetching using API.')
initial_data = None
if not initial_data:
query = {'videoId': video_id}
query.update(self._get_checkok_params())
initial_data = self._extract_response(
item_id=video_id, ep='next', fatal=False,
ytcfg=master_ytcfg, query=query,
ytcfg=master_ytcfg, query=query, check_get_keys='contents',
headers=self.generate_api_headers(ytcfg=master_ytcfg),
note='Downloading initial data API JSON')

Expand Down

0 comments on commit 607510b

Please sign in to comment.