youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b0872c19ea6fb5dcc20d695d6faead4af42da364
parent 9f790b9901445d532564b3c5c90c0ecfaea4805d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 23 Mar 2015 22:15:01 +0600

[npo] Skip broken URL links (Closes #5266)

Diffstat:
Myoutube_dl/extractor/npo.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

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