mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 00:25:15 +00:00 
			
		
		
		
	Merge remote-tracking branch 'naglis/tudou_fix'
This commit is contained in:
		@@ -58,7 +58,9 @@ class TudouIE(InfoExtractor):
 | 
				
			|||||||
        segments = json.loads(segs_json)
 | 
					        segments = json.loads(segs_json)
 | 
				
			||||||
        # It looks like the keys are the arguments that have to be passed as
 | 
					        # It looks like the keys are the arguments that have to be passed as
 | 
				
			||||||
        # the hd field in the request url, we pick the higher
 | 
					        # the hd field in the request url, we pick the higher
 | 
				
			||||||
        quality = sorted(segments.keys())[-1]
 | 
					        # Also, filter non-number qualities (see issue #3643).
 | 
				
			||||||
 | 
					        quality = sorted(filter(lambda k: k.isdigit(), segments.keys()),
 | 
				
			||||||
 | 
					                         key=lambda k: int(k))[-1]
 | 
				
			||||||
        parts = segments[quality]
 | 
					        parts = segments[quality]
 | 
				
			||||||
        result = []
 | 
					        result = []
 | 
				
			||||||
        len_parts = len(parts)
 | 
					        len_parts = len(parts)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user