mirror of
https://gitlab.com/ytdl-org/youtube-dl.git
synced 2025-11-06 14:57:06 -05:00
[imdb] Fix extension extraction (closes #17167)
This commit is contained in:
@@ -64,7 +64,8 @@ class ImdbIE(InfoExtractor):
|
|||||||
video_url = url_or_none(encoding.get('videoUrl'))
|
video_url = url_or_none(encoding.get('videoUrl'))
|
||||||
if not video_url:
|
if not video_url:
|
||||||
continue
|
continue
|
||||||
ext = determine_ext(video_url, mimetype2ext(encoding.get('mimeType')))
|
ext = mimetype2ext(encoding.get(
|
||||||
|
'mimeType')) or determine_ext(video_url)
|
||||||
if ext == 'm3u8':
|
if ext == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
video_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
video_url, video_id, 'mp4', entry_protocol='m3u8_native',
|
||||||
|
|||||||
Reference in New Issue
Block a user