[yandexmusic] Clarify blockage
authorSergey M․ <dstftw@gmail.com>
Thu, 28 Apr 2016 15:45:33 +0000 (21:45 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 28 Apr 2016 15:45:33 +0000 (21:45 +0600)
youtube_dl/extractor/yandexmusic.py

index b0e68a0879e5d13fb91d3e240d8285795d3c8017..a33fe3d83b72c99c695ed2a71c38feb58d947df5 100644 (file)
@@ -26,7 +26,11 @@ class YandexMusicBaseIE(InfoExtractor):
     def _download_webpage(self, *args, **kwargs):
         webpage = super(YandexMusicBaseIE, self)._download_webpage(*args, **kwargs)
         if 'Нам очень жаль, но&nbsp;запросы, поступившие с&nbsp;вашего IP-адреса, похожи на&nbsp;автоматические.' in webpage:
-            raise ExtractorError('Blocked by YandexMusic', expected=True)
+            raise ExtractorError(
+                'YandexMusic asks you to solve a CAPTCHA: go to '
+                'https://music.yandex.ru/ and solve it, then export '
+                'cookies and pass cookie file to youtube-dl with --cookies',
+                expected=True)
         return webpage
 
     def _download_json(self, *args, **kwargs):