[extractor/youtube] Fix live chat for videos with content warning

Fixes #4051
Authored by: coletdjnz
This commit is contained in:
coletdjnz 2022-06-12 17:56:50 +12:00
parent 2523702718
commit 4ce05f5759
No known key found for this signature in database
GPG Key ID: 91984263BB39894A
1 changed files with 2 additions and 1 deletions

View File

@ -3690,7 +3690,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
pass
else:
info.setdefault('subtitles', {})['live_chat'] = [{
'url': f'https://www.youtube.com/watch?v={video_id}', # url is needed to set cookies
# url is needed to set cookies
'url': f'https://www.youtube.com/watch?v={video_id}&bpctr=9999999999&has_verified=1',
'video_id': video_id,
'ext': 'json',
'protocol': 'youtube_live_chat' if is_live or is_upcoming else 'youtube_live_chat_replay',