mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[YoutubeDL] Fix resolution with missing height in output template dict
This commit is contained in:
		@@ -567,7 +567,7 @@ class YoutubeDL(object):
 | 
				
			|||||||
                elif template_dict.get('height'):
 | 
					                elif template_dict.get('height'):
 | 
				
			||||||
                    template_dict['resolution'] = '%sp' % template_dict['height']
 | 
					                    template_dict['resolution'] = '%sp' % template_dict['height']
 | 
				
			||||||
                elif template_dict.get('width'):
 | 
					                elif template_dict.get('width'):
 | 
				
			||||||
                    template_dict['resolution'] = '?x%d' % template_dict['width']
 | 
					                    template_dict['resolution'] = '%dx?' % template_dict['width']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            sanitize = lambda k, v: sanitize_filename(
 | 
					            sanitize = lambda k, v: sanitize_filename(
 | 
				
			||||||
                compat_str(v),
 | 
					                compat_str(v),
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user