aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-03-04 19:38:55 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-03-08 22:38:06 +0530
commit08d30158ec8e7e08c1d83dcfde6dba18c95b2640 (patch)
treeccfe053ce94c1005b3d8b3a8a0a9b9af4180424e /yt_dlp/downloader
parentc89bec262c7a8efa078c61b2ec59afdd4051e4bf (diff)
downloadhypervideo-pre-08d30158ec8e7e08c1d83dcfde6dba18c95b2640.tar.lz
hypervideo-pre-08d30158ec8e7e08c1d83dcfde6dba18c95b2640.tar.xz
hypervideo-pre-08d30158ec8e7e08c1d83dcfde6dba18c95b2640.zip
[cleanup, docs] Misc cleanup
Closes #2828, closes #2734, closes #2802, closes #2937
Diffstat (limited to 'yt_dlp/downloader')
-rw-r--r--yt_dlp/downloader/youtube_live_chat.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/yt_dlp/downloader/youtube_live_chat.py b/yt_dlp/downloader/youtube_live_chat.py
index ef4205edc..fbf1c3d5a 100644
--- a/yt_dlp/downloader/youtube_live_chat.py
+++ b/yt_dlp/downloader/youtube_live_chat.py
@@ -22,6 +22,9 @@ class YoutubeLiveChatFD(FragmentFD):
def real_download(self, filename, info_dict):
video_id = info_dict['video_id']
self.to_screen('[%s] Downloading live chat' % self.FD_NAME)
+ if not self.params.get('skip_download'):
+ self.report_warning('Live chat download runs until the livestream ends. '
+ 'If you wish to download the video simultaneously, run a separate yt-dlp instance')
fragment_retries = self.params.get('fragment_retries', 0)
test = self.params.get('test', False)