logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: cc7397b04d4a21b5ac680858ee2600e3b3bfb569
parent bc5d16b3023ab29216d868bbfe8838b5e92e72f6
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 22 Mar 2016 21:12:29 +0600

[ceskatelevize] Make m3u8 formats extraction non fatal (Closes #8933)

Diffstat:

Myoutube_dl/extractor/ceskatelevize.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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']