aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-03-23 17:53:36 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-03-23 17:53:36 +0530
commit83b20a970d9f3401eaab6f520d099b599f250d5d (patch)
tree6abd2cb240d7ce8399cc4980027d3ff49751861a
parente1feb88fdf09203e64a9f4cf7a761c228a21d720 (diff)
downloadhypervideo-pre-83b20a970d9f3401eaab6f520d099b599f250d5d.tar.lz
hypervideo-pre-83b20a970d9f3401eaab6f520d099b599f250d5d.tar.xz
hypervideo-pre-83b20a970d9f3401eaab6f520d099b599f250d5d.zip
[youtube_live_chat] fix bug when trying to set cookies
Closes #194
-rw-r--r--yt_dlp/downloader/youtube_live_chat.py3
-rw-r--r--yt_dlp/extractor/youtube.py1
2 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/downloader/youtube_live_chat.py b/yt_dlp/downloader/youtube_live_chat.py
index 8e173d8b5..a6c13335e 100644
--- a/yt_dlp/downloader/youtube_live_chat.py
+++ b/yt_dlp/downloader/youtube_live_chat.py
@@ -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:
diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py
index 6c93517d4..57300114d 100644
--- a/yt_dlp/extractor/youtube.py
+++ b/yt_dlp/extractor/youtube.py
@@ -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',