diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-02-17 23:18:23 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-02-17 23:18:23 +0600 |
commit | 80e59a0d5d397c46c73d52a4e2c1ec6af3b9b1e7 (patch) | |
tree | a1f77814969d7a60662a860ccc1a0c7d149d88c0 /youtube_dl/extractor | |
parent | 8bbd3d14765a836f72beb2d9dc53832872845669 (diff) |
[vrt] Make formats extraction non fatal (Closes #8587)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/vrt.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vrt.py b/youtube_dl/extractor/vrt.py index 01891ac4c..522e2bbc8 100644 --- a/youtube_dl/extractor/vrt.py +++ b/youtube_dl/extractor/vrt.py @@ -73,11 +73,12 @@ class VRTIE(InfoExtractor): if mobj: formats.extend(self._extract_m3u8_formats( '%s/%s' % (mobj.group('server'), mobj.group('path')), - video_id, 'mp4', m3u8_id='hls')) + video_id, 'mp4', m3u8_id='hls', fatal=False)) mobj = re.search(r'data-video-src="(?P<src>[^"]+)"', webpage) if mobj: formats.extend(self._extract_f4m_formats( - '%s/manifest.f4m' % mobj.group('src'), video_id, f4m_id='hds')) + '%s/manifest.f4m' % mobj.group('src'), + video_id, f4m_id='hds', fatal=False)) self._sort_formats(formats) title = self._og_search_title(webpage) |