youtube-dl

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

commit 58be922079a09bc56ff331864b094ba38beaf26e
parent c84d3a557de8eddc8e63adbd11ab40877f52c502
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Thu,  4 Feb 2016 01:26:25 +0800

[kuwo] Check for georestriction

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

diff --git a/youtube_dl/extractor/kuwo.py b/youtube_dl/extractor/kuwo.py @@ -31,6 +31,10 @@ class KuwoBaseIE(InfoExtractor): (file_format['ext'], file_format.get('br', ''), song_id), song_id, note='Download %s url info' % file_format['format'], ) + + if song_url == 'IPDeny': + raise ExtractorError('This song is blocked in this region', expected=True) + if song_url.startswith('http://') or song_url.startswith('https://'): formats.append({ 'url': song_url,