[ie/generic] Fix direct video link extensions (#10468)

Fixes regression in the generic extractor due in 5ce582448e

Closes #10459
Authored by: bashonly
This commit is contained in:
bashonly 2024-07-14 13:57:07 -05:00 committed by GitHub
parent 16da8ef993
commit b9afb99e7c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -43,6 +43,7 @@
xpath_text,
xpath_with_ns,
)
from ..utils._utils import _UnsafeExtensionError
class GenericIE(InfoExtractor):
@ -2446,9 +2447,13 @@ def _real_extract(self, url):
if not is_html(first_bytes):
self.report_warning(
'URL could be a direct video link, returning it as such.')
ext = determine_ext(url)
if ext not in _UnsafeExtensionError.ALLOWED_EXTENSIONS:
ext = 'unknown_video'
info_dict.update({
'direct': True,
'url': url,
'ext': ext,
})
return info_dict