diff options
author | Remita Amine <remitamine@gmail.com> | 2017-11-19 12:59:31 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2017-11-19 12:59:31 +0100 |
commit | a9efdf3d4a18ec5657ea50f31715e1b88a945820 (patch) | |
tree | 41e01bad6c8f7426b8a0a52c96db0b83876e5d02 | |
parent | f610dbb05f8d17cc95437958835a437c3777b38c (diff) |
[livestream] make smil extraction non fatal(fixes #14792)
-rw-r--r-- | youtube_dl/extractor/livestream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/livestream.py b/youtube_dl/extractor/livestream.py index 317ebbc4e..c4776bbf3 100644 --- a/youtube_dl/extractor/livestream.py +++ b/youtube_dl/extractor/livestream.py @@ -114,7 +114,7 @@ class LivestreamIE(InfoExtractor): smil_url = video_data.get('smil_url') if smil_url: - formats.extend(self._extract_smil_formats(smil_url, video_id)) + formats.extend(self._extract_smil_formats(smil_url, video_id, fatal=False)) m3u8_url = video_data.get('m3u8_url') if m3u8_url: |