diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-07-24 10:29:26 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-07-24 10:29:26 +0700 |
commit | f75e6890dbc70f0686e967e89b5c422a3aee8951 (patch) | |
tree | 518cfbcbd0bc03938b21cb21ad5b958a3d0b2a62 /youtube_dl | |
parent | d9cb92c84058bce2c222b7a634608d7a16addcb2 (diff) |
[telegraaf] Make hls non fatal
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/telegraaf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/telegraaf.py b/youtube_dl/extractor/telegraaf.py index 926d36e5a..58078c531 100644 --- a/youtube_dl/extractor/telegraaf.py +++ b/youtube_dl/extractor/telegraaf.py @@ -47,7 +47,7 @@ class TelegraafIE(InfoExtractor): ext = determine_ext(manifest_url) if ext == 'm3u8': formats.extend(self._extract_m3u8_formats( - manifest_url, video_id, ext='mp4', m3u8_id='hls')) + manifest_url, video_id, ext='mp4', m3u8_id='hls', fatal=False)) elif ext == 'mpd': formats.extend(self._extract_mpd_formats( manifest_url, video_id, mpd_id='dash', fatal=False)) |