[vessel] Make hls formats non fatal

This commit is contained in:
Sergey M․ 2016-06-09 04:13:38 +07:00
parent 39da509f67
commit 9d51a0a9a1
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions

View File

@ -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))