diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-03-22 21:12:29 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-03-22 21:12:29 +0600 |
commit | cc7397b04d4a21b5ac680858ee2600e3b3bfb569 (patch) | |
tree | e1fcc810ea9fa29565d85dae164e831587f6e65f /youtube_dl | |
parent | bc5d16b3023ab29216d868bbfe8838b5e92e72f6 (diff) |
[ceskatelevize] Make m3u8 formats extraction non fatal (Closes #8933)
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/ceskatelevize.py | 3 |
1 files changed, 2 insertions, 1 deletions
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'] |