mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	YoutubeIE: report warnings instead of errors if the subtitles are not found (related #901)
For example when downloading a playlist some videos may not have subtitles but the download shouldn't stop.
This commit is contained in:
		| @@ -699,14 +699,14 @@ class YoutubeIE(InfoExtractor): | ||||
|                         pass | ||||
|                     else: | ||||
|                         # We report the original error | ||||
|                         self._downloader.report_error(sub_error) | ||||
|                         self._downloader.report_warning(sub_error) | ||||
|  | ||||
|         if self._downloader.params.get('allsubtitles', False): | ||||
|             video_subtitles = self._extract_all_subtitles(video_id) | ||||
|             for video_subtitle in video_subtitles: | ||||
|                 (sub_error, sub_lang, sub) = video_subtitle | ||||
|                 if sub_error: | ||||
|                     self._downloader.report_error(sub_error) | ||||
|                     self._downloader.report_warning(sub_error) | ||||
|  | ||||
|         if self._downloader.params.get('listsubtitles', False): | ||||
|             sub_lang_list = self._list_available_subtitles(video_id) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz