youtube-dl

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

commit b8adcec4eac2fb8946547b581a6e7139171dc9d1
parent 073cca3df8595be52463be9f3da81f1f2b736e9c
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sat, 17 Feb 2018 20:11:06 +0700

[npo] Capture and output error message

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

diff --git a/youtube_dl/extractor/npo.py b/youtube_dl/extractor/npo.py @@ -170,6 +170,10 @@ class NPOIE(NPOBaseIE): transform_source=strip_jsonp, ) + error = metadata.get('error') + if error: + raise ExtractorError(error, expected=True) + # For some videos actual video id (prid) is different (e.g. for # http://www.omroepwnl.nl/video/fragment/vandaag-de-dag-verkiezingen__POMS_WNL_853698 # video id is POMS_WNL_853698 but prid is POW_00996502)