mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 11:43:47 +00:00 
			
		
		
		
	[utils] Improve determine_ext (Closes #7593)
This commit is contained in:
		
							parent
							
								
									e568c2233e
								
							
						
					
					
						commit
						3e12bc583a
					
				@ -922,7 +922,7 @@ def unified_strdate(date_str, day_first=True):
 | 
				
			|||||||
def determine_ext(url, default_ext='unknown_video'):
 | 
					def determine_ext(url, default_ext='unknown_video'):
 | 
				
			||||||
    if url is None:
 | 
					    if url is None:
 | 
				
			||||||
        return default_ext
 | 
					        return default_ext
 | 
				
			||||||
    guess = url.partition('?')[0].rpartition('.')[2]
 | 
					    guess = url.partition('?')[0].rpartition('.')[2].rstrip('/')
 | 
				
			||||||
    if re.match(r'^[A-Za-z0-9]+$', guess):
 | 
					    if re.match(r'^[A-Za-z0-9]+$', guess):
 | 
				
			||||||
        return guess
 | 
					        return guess
 | 
				
			||||||
    else:
 | 
					    else:
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user