[yandexmusic] Clarify blockage even more
authorSergey M․ <dstftw@gmail.com>
Thu, 28 Apr 2016 19:28:07 +0000 (01:28 +0600)
committerSergey M․ <dstftw@gmail.com>
Thu, 28 Apr 2016 19:28:07 +0000 (01:28 +0600)
youtube_dl/extractor/yandexmusic.py

index a33fe3d83b72c99c695ed2a71c38feb58d947df5..ce3723b55032915a216e23f4daa902a42ca314cf 100644 (file)
@@ -27,9 +27,12 @@ class YandexMusicBaseIE(InfoExtractor):
         webpage = super(YandexMusicBaseIE, self)._download_webpage(*args, **kwargs)
         if 'Нам очень жаль, но&nbsp;запросы, поступившие с&nbsp;вашего IP-адреса, похожи на&nbsp;автоматические.' in webpage:
             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',
+                'YandexMusic has considered youtube-dl requests automated and '
+                'asks you to solve a CAPTCHA. You can either wait for some '
+                'time until unblocked and optionally use --sleep-interval '
+                'in future or alternatively you can go to https://music.yandex.ru/ '
+                'solve CAPTCHA, then export cookies and pass cookie file to '
+                'youtube-dl with --cookies',
                 expected=True)
         return webpage