aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-05-27 01:41:27 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-05-27 01:41:27 +0800
commitfac2af3c51c92b7f9abc4f229bc9351e8a301b29 (patch)
tree2083c8aba3e5286cc440f3a0625c47481e878801 /youtube_dl
parent6f8cb2421948fd128b3004fde7eebaa2463f5f06 (diff)
downloadyoutube-dl-fac2af3c51c92b7f9abc4f229bc9351e8a301b29.zip
youtube-dl-fac2af3c51c92b7f9abc4f229bc9351e8a301b29.tar.gz
youtube-dl-fac2af3c51c92b7f9abc4f229bc9351e8a301b29.tar.bz2
[common] Fix m3u8 extraction in f4m manifests
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index e53b7ad..0029c36 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({