1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 22:55:42 +07:00

[common] Fix m3u8 extraction in f4m manifests

This commit is contained in:
Yen Chi Hsuan
2016-05-27 01:41:27 +08:00
parent 6f8cb24219
commit fac2af3c51

View File

@@ -1063,7 +1063,7 @@ def _parse_f4m_formats(self, manifest, manifest_url, video_id, preference=None,
elif ext == 'm3u8':
formats.extend(self._extract_m3u8_formats(
manifest_url, video_id, 'mp4', preference=preference,
m3u8_id=m3u8_id, fatal=False))
m3u8_id=m3u8_id, fatal=fatal))
continue
tbr = int_or_none(media_el.attrib.get('bitrate'))
formats.append({