diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-27 01:41:27 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-05-27 01:41:27 +0800 |
commit | fac2af3c51c92b7f9abc4f229bc9351e8a301b29 (patch) | |
tree | 2083c8aba3e5286cc440f3a0625c47481e878801 /youtube_dl/extractor/common.py | |
parent | 6f8cb2421948fd128b3004fde7eebaa2463f5f06 (diff) |
[common] Fix m3u8 extraction in f4m manifests
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index e53b7ad64..0029c3694 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1063,7 +1063,7 @@ class InfoExtractor(object): 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({ |