summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-06-09 04:13:38 +0700
committerSergey M․ <dstftw@gmail.com>2016-06-09 04:13:38 +0700
commit9d51a0a9a19f07997cfb3ff1bb9fc9c1669a455c (patch)
tree04f5fa36e7802a4921a7f5fcaa37b97b3912f0e6
parent39da509f6712b6b0e9d52a9c9e990a5b5cd6c2ac (diff)
downloadyoutube-dl-9d51a0a9a19f07997cfb3ff1bb9fc9c1669a455c.tar.gz
youtube-dl-9d51a0a9a19f07997cfb3ff1bb9fc9c1669a455c.tar.xz
youtube-dl-9d51a0a9a19f07997cfb3ff1bb9fc9c1669a455c.zip
[vessel] Make hls formats non fatal
-rw-r--r--youtube_dl/extractor/vessel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vessel.py b/youtube_dl/extractor/vessel.py
index c53f44584..2cd617b91 100644
--- a/youtube_dl/extractor/vessel.py
+++ b/youtube_dl/extractor/vessel.py
@@ -115,7 +115,7 @@ class VesselIE(InfoExtractor):
             if name == 'hls-index':
                 formats.extend(self._extract_m3u8_formats(
                     location, video_id, ext='mp4',
-                    entry_protocol='m3u8_native', m3u8_id='m3u8'))
+                    entry_protocol='m3u8_native', m3u8_id='m3u8', fatal=False))
             elif name == 'dash-index':
                 formats.extend(self._extract_mpd_formats(
                     location, video_id, mpd_id='dash', fatal=False))