mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 06:35:12 +00:00 
			
		
		
		
	Revert "Merge webm formats into mkv if thumbnails are to be embedded (#173)"
This reverts commit 4d971a16b8 by @damianoamatruda
Closes #500
This was wrongly checking for `write_thumbnail`
			
			
This commit is contained in:
		| @@ -2590,17 +2590,10 @@ class YoutubeDL(object): | |||||||
|  |  | ||||||
|                     requested_formats = info_dict['requested_formats'] |                     requested_formats = info_dict['requested_formats'] | ||||||
|                     old_ext = info_dict['ext'] |                     old_ext = info_dict['ext'] | ||||||
|                     if self.params.get('merge_output_format') is None: |                     if self.params.get('merge_output_format') is None and not compatible_formats(requested_formats): | ||||||
|                         if not compatible_formats(requested_formats): |                         info_dict['ext'] = 'mkv' | ||||||
|                             info_dict['ext'] = 'mkv' |                         self.report_warning( | ||||||
|                             self.report_warning( |                             'Requested formats are incompatible for merge and will be merged into mkv.') | ||||||
|                                 'Requested formats are incompatible for merge and will be merged into mkv.') |  | ||||||
|                         if (info_dict['ext'] == 'webm' |  | ||||||
|                                 and self.params.get('writethumbnail', False) |  | ||||||
|                                 and info_dict.get('thumbnails')): |  | ||||||
|                             info_dict['ext'] = 'mkv' |  | ||||||
|                             self.report_warning( |  | ||||||
|                                 'webm doesn\'t support embedding a thumbnail, mkv will be used.') |  | ||||||
|  |  | ||||||
|                     def correct_ext(filename): |                     def correct_ext(filename): | ||||||
|                         filename_real_ext = os.path.splitext(filename)[1][1:] |                         filename_real_ext = os.path.splitext(filename)[1][1:] | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan