From: Sergey M․ Date: Mon, 23 Mar 2015 16:15:01 +0000 (+0600) Subject: [npo] Skip broken URL links (Closes #5266) X-Git-Tag: 2015.03.24~2 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=b0872c19ea6fb5dcc20d695d6faead4af42da364;p=youtube-dl.git [npo] Skip broken URL links (Closes #5266) --- diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py index 557dffa468..5d84485714 100644 --- a/youtube_dl/extractor/npo.py +++ b/youtube_dl/extractor/npo.py @@ -231,7 +231,10 @@ class NPOLiveIE(NPOBaseIE): stream_url = self._download_json( stream_info['stream'], display_id, 'Downloading %s URL' % stream_type, - transform_source=strip_jsonp) + 'Unable to download %s URL' % stream_type, + transform_source=strip_jsonp, fatal=False) + if not stream_url: + continue if stream_type == 'hds': f4m_formats = self._extract_f4m_formats(stream_url, display_id) # f4m downloader downloads only piece of live stream