[ie] Fix JW Player format parsing (#10956)

Authored by: seproDev
This commit is contained in:
sepro 2024-09-14 00:54:41 +02:00 committed by GitHub
parent b4760c778d
commit 409f8e9e3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3489,7 +3489,7 @@ class InfoExtractor:
continue
urls.add(source_url)
source_type = source.get('type') or ''
ext = mimetype2ext(source_type) or determine_ext(source_url)
ext = determine_ext(source_url, default_ext=mimetype2ext(source_type))
if source_type == 'hls' or ext == 'm3u8' or 'format=m3u8-aapl' in source_url:
formats.extend(self._extract_m3u8_formats(
source_url, video_id, 'mp4', entry_protocol='m3u8_native',