mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[youtube] Simplify non-DASH formats exclusion
This commit is contained in:
		@@ -1148,8 +1148,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
 | 
			
		||||
                    # fixed values (for example the resolution). See
 | 
			
		||||
                    # https://github.com/rg3/youtube-dl/issues/5774 for an
 | 
			
		||||
                    # example.
 | 
			
		||||
                    dash_keys = set(df['format_id'] for df in dash_formats.values())
 | 
			
		||||
                    formats = [f for f in formats if f['format_id'] not in dash_keys]
 | 
			
		||||
                    formats = [f for f in formats if f['format_id'] not in dash_formats.keys()]
 | 
			
		||||
                    formats.extend(dash_formats.values())
 | 
			
		||||
 | 
			
		||||
        # Check for malformed aspect ratio
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user