[YoutubeDL] Autocalculate ext for subtitles when missing
This commit is contained in:
		
							parent
							
								
									ef5acfe32d
								
							
						
					
					
						commit
						4bba371644
					
				| @ -1232,13 +1232,20 @@ class YoutubeDL(object): | |||||||
|             except (ValueError, OverflowError, OSError): |             except (ValueError, OverflowError, OSError): | ||||||
|                 pass |                 pass | ||||||
| 
 | 
 | ||||||
|  |         subtitles = info_dict.get('subtitles') | ||||||
|  |         if subtitles: | ||||||
|  |             for _, subtitle in subtitles.items(): | ||||||
|  |                 for subtitle_format in subtitle: | ||||||
|  |                     if 'ext' not in subtitle_format: | ||||||
|  |                         subtitle_format['ext'] = determine_ext(subtitle_format['url']).lower() | ||||||
|  | 
 | ||||||
|         if self.params.get('listsubtitles', False): |         if self.params.get('listsubtitles', False): | ||||||
|             if 'automatic_captions' in info_dict: |             if 'automatic_captions' in info_dict: | ||||||
|                 self.list_subtitles(info_dict['id'], info_dict.get('automatic_captions'), 'automatic captions') |                 self.list_subtitles(info_dict['id'], info_dict.get('automatic_captions'), 'automatic captions') | ||||||
|             self.list_subtitles(info_dict['id'], info_dict.get('subtitles'), 'subtitles') |             self.list_subtitles(info_dict['id'], subtitles, 'subtitles') | ||||||
|             return |             return | ||||||
|         info_dict['requested_subtitles'] = self.process_subtitles( |         info_dict['requested_subtitles'] = self.process_subtitles( | ||||||
|             info_dict['id'], info_dict.get('subtitles'), |             info_dict['id'], subtitles, | ||||||
|             info_dict.get('automatic_captions')) |             info_dict.get('automatic_captions')) | ||||||
| 
 | 
 | ||||||
|         # We now pick which formats have to be downloaded |         # We now pick which formats have to be downloaded | ||||||
|  | |||||||
| @ -165,6 +165,7 @@ class InfoExtractor(object): | |||||||
|                     with the "ext" entry and one of: |                     with the "ext" entry and one of: | ||||||
|                         * "data": The subtitles file contents |                         * "data": The subtitles file contents | ||||||
|                         * "url": A URL pointing to the subtitles file |                         * "url": A URL pointing to the subtitles file | ||||||
|  |                     "ext" will be calculated from URL if missing | ||||||
|     automatic_captions: Like 'subtitles', used by the YoutubeIE for |     automatic_captions: Like 'subtitles', used by the YoutubeIE for | ||||||
|                     automatically generated captions |                     automatically generated captions | ||||||
|     duration:       Length of the video in seconds, as an integer. |     duration:       Length of the video in seconds, as an integer. | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user