mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[pluralsight] Fix format selection
This commit is contained in:
		@@ -224,6 +224,7 @@ class PluralsightIE(PluralsightBaseIE):
 | 
				
			|||||||
                req_format_split = req_format.split('-', 1)
 | 
					                req_format_split = req_format.split('-', 1)
 | 
				
			||||||
                if len(req_format_split) > 1:
 | 
					                if len(req_format_split) > 1:
 | 
				
			||||||
                    req_ext, req_quality = req_format_split
 | 
					                    req_ext, req_quality = req_format_split
 | 
				
			||||||
 | 
					                    req_quality = '-'.join(req_quality.split('-')[:2])
 | 
				
			||||||
                    for allowed_quality in ALLOWED_QUALITIES:
 | 
					                    for allowed_quality in ALLOWED_QUALITIES:
 | 
				
			||||||
                        if req_ext == allowed_quality.ext and req_quality in allowed_quality.qualities:
 | 
					                        if req_ext == allowed_quality.ext and req_quality in allowed_quality.qualities:
 | 
				
			||||||
                            return (AllowedQuality(req_ext, (req_quality, )), )
 | 
					                            return (AllowedQuality(req_ext, (req_quality, )), )
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user