[nytimes] improve format sorting(closes #24010)
This commit is contained in:
		
							parent
							
								
									bfe2b8cf2a
								
							
						
					
					
						commit
						f377edec06
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -69,10 +69,10 @@ class NYTimesBaseIE(InfoExtractor):
 | 
			
		|||
                    'width': int_or_none(video.get('width')),
 | 
			
		||||
                    'height': int_or_none(video.get('height')),
 | 
			
		||||
                    'filesize': get_file_size(video.get('file_size') or video.get('fileSize')),
 | 
			
		||||
                    'tbr': int_or_none(video.get('bitrate'), 1000),
 | 
			
		||||
                    'tbr': int_or_none(video.get('bitrate'), 1000) or None,
 | 
			
		||||
                    'ext': ext,
 | 
			
		||||
                })
 | 
			
		||||
        self._sort_formats(formats)
 | 
			
		||||
        self._sort_formats(formats, ('height', 'width', 'filesize', 'tbr', 'fps', 'format_id'))
 | 
			
		||||
 | 
			
		||||
        thumbnails = []
 | 
			
		||||
        for image in video_data.get('images', []):
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue