mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[common] Fix m3u8 extraction in f4m manifests
This commit is contained in:
parent
6f8cb24219
commit
fac2af3c51
1 changed files with 1 additions and 1 deletions
|
@ -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({
|
||||
|
|
Loading…
Reference in a new issue