about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-21 14:51:07 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-21 14:51:07 +0100
commit77b2986b5b0246234b72ae9dd78fb40f9d37374f (patch)
tree055bce2e4ae4ba36ff7852394cd4d0c613340c24
parent62b013df0dcb5f902d745b77b3de62b64b828863 (diff)
downloadyoutube-dl-77b2986b5b0246234b72ae9dd78fb40f9d37374f.tar.gz
youtube-dl-77b2986b5b0246234b72ae9dd78fb40f9d37374f.tar.xz
youtube-dl-77b2986b5b0246234b72ae9dd78fb40f9d37374f.zip
[extractor/common] Recognize Indian censorship (#5021)
-rw-r--r--youtube_dl/extractor/common.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py
index 08b8ad37c..ee64ad329 100644
--- a/youtube_dl/extractor/common.py
+++ b/youtube_dl/extractor/common.py
@@ -391,6 +391,16 @@ class InfoExtractor(object):
             if blocked_iframe:
                 msg += ' Visit %s for more details' % blocked_iframe
             raise ExtractorError(msg, expected=True)
+        if '<title>The URL you requested has been blocked</title>' in content[:512]:
+            msg = (
+                'Access to this webpage has been blocked by Indian censorship. '
+                'Use a VPN or proxy server (with --proxy) to route around it.')
+            block_msg = self._html_search_regex(
+                r'</h1><p>(.*?)</p>',
+                content, 'block message', default=None)
+            if block_msg:
+                msg += ' (Message: "%s")' % block_msg.replace('\n', ' ')
+            raise ExtractorError(msg, expected=True)
 
         return content