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

Fixes #4051
Authored by: coletdjnz
pull/3640/merge
coletdjnz 2 years ago
parent 2523702718
commit 4ce05f5759
No known key found for this signature in database
GPG Key ID: 91984263BB39894A

@ -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',

Loading…
Cancel
Save