[youtube_live_chat] fix bug when trying to set cookies

Closes #194
This commit is contained in:
pukkandan 2021-03-23 17:53:36 +05:30
parent e1feb88fdf
commit 83b20a970d
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
2 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,7 @@ class YoutubeLiveChatReplayFD(FragmentFD):
self._prepare_and_start_frag_download(ctx)
success, raw_fragment = dl_fragment(
'https://www.youtube.com/watch?v={}'.format(video_id))
success, raw_fragment = dl_fragment(info_dict['url'])
if not success:
return False
try:

View File

@ -2150,6 +2150,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
# This will error if there is no livechat
initial_data['contents']['twoColumnWatchNextResults']['conversationBar']['liveChatRenderer']['continuations'][0]['reloadContinuationData']['continuation']
info['subtitles']['live_chat'] = [{
'url': 'https://www.youtube.com/watch?v=%s' % video_id, # url is needed to set cookies
'video_id': video_id,
'ext': 'json',
'protocol': 'youtube_live_chat_replay',