mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 15:14:57 +00:00
parent
a39a7ba8d6
commit
0df111a371
1 changed files with 8 additions and 0 deletions
|
@ -3684,6 +3684,14 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
||||||
headers=self.generate_api_headers(ytcfg=master_ytcfg),
|
headers=self.generate_api_headers(ytcfg=master_ytcfg),
|
||||||
note='Downloading initial data API JSON')
|
note='Downloading initial data API JSON')
|
||||||
|
|
||||||
|
info['comment_count'] = traverse_obj(initial_data, (
|
||||||
|
'contents', 'twoColumnWatchNextResults', 'results', 'results', 'contents', ..., 'itemSectionRenderer',
|
||||||
|
'contents', ..., 'commentsEntryPointHeaderRenderer', 'commentCount', 'simpleText'
|
||||||
|
), (
|
||||||
|
'engagementPanels', lambda _, v: v['engagementPanelSectionListRenderer']['panelIdentifier'] == 'comment-item-section',
|
||||||
|
'engagementPanelSectionListRenderer', 'header', 'engagementPanelTitleHeaderRenderer', 'contextualInfo', 'runs', ..., 'text'
|
||||||
|
), expected_type=int_or_none, get_all=False)
|
||||||
|
|
||||||
try: # This will error if there is no livechat
|
try: # This will error if there is no livechat
|
||||||
initial_data['contents']['twoColumnWatchNextResults']['conversationBar']['liveChatRenderer']['continuations'][0]['reloadContinuationData']['continuation']
|
initial_data['contents']['twoColumnWatchNextResults']['conversationBar']['liveChatRenderer']['continuations'][0]['reloadContinuationData']['continuation']
|
||||||
except (KeyError, IndexError, TypeError):
|
except (KeyError, IndexError, TypeError):
|
||||||
|
|
Loading…
Reference in a new issue