mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 04:29:44 +01: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'):
|
||||
if url is None:
|
||||
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):
|
||||
return guess
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user