From: Sergey M․ Date: Tue, 22 Mar 2016 15:12:29 +0000 (+0600) Subject: [ceskatelevize] Make m3u8 formats extraction non fatal (Closes #8933) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=cc7397b04d4a21b5ac680858ee2600e3b3bfb569;p=youtube-dl [ceskatelevize] Make m3u8 formats extraction non fatal (Closes #8933) --- diff --git a/youtube_dl/extractor/ceskatelevize.py b/youtube_dl/extractor/ceskatelevize.py index b27b4e670..b355111cb 100644 --- a/youtube_dl/extractor/ceskatelevize.py +++ b/youtube_dl/extractor/ceskatelevize.py @@ -129,7 +129,8 @@ class CeskaTelevizeIE(InfoExtractor): formats = [] for format_id, stream_url in item['streamUrls'].items(): formats.extend(self._extract_m3u8_formats( - stream_url, playlist_id, 'mp4', entry_protocol='m3u8_native')) + stream_url, playlist_id, 'mp4', + entry_protocol='m3u8_native', fatal=False)) self._sort_formats(formats) item_id = item.get('id') or item['assetId']