about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-11-19 12:59:31 +0100
committerRemita Amine <remitamine@gmail.com>2017-11-19 12:59:31 +0100
commita9efdf3d4a18ec5657ea50f31715e1b88a945820 (patch)
tree41e01bad6c8f7426b8a0a52c96db0b83876e5d02
parentf610dbb05f8d17cc95437958835a437c3777b38c (diff)
downloadyoutube-dl-a9efdf3d4a18ec5657ea50f31715e1b88a945820.tar.gz
youtube-dl-a9efdf3d4a18ec5657ea50f31715e1b88a945820.tar.xz
youtube-dl-a9efdf3d4a18ec5657ea50f31715e1b88a945820.zip
[livestream] make smil extraction non fatal(fixes #14792)
-rw-r--r--youtube_dl/extractor/livestream.py2
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: