aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/yandexmusic.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-04-29 01:28:07 +0600
committerSergey M․ <dstftw@gmail.com>2016-04-29 01:28:07 +0600
commit497971cd4a8407651debfb2fd4b10fc4009b0f15 (patch)
treeccda0839f87f1c9d22093bb8c3889a996d8bc22d /youtube_dl/extractor/yandexmusic.py
parente757fb3d053a195da4084c08a59a7b17b08ba598 (diff)
downloadyoutube-dl-497971cd4a8407651debfb2fd4b10fc4009b0f15.zip
youtube-dl-497971cd4a8407651debfb2fd4b10fc4009b0f15.tar.gz
youtube-dl-497971cd4a8407651debfb2fd4b10fc4009b0f15.tar.bz2
[yandexmusic] Clarify blockage even more
Diffstat (limited to 'youtube_dl/extractor/yandexmusic.py')
-rw-r--r--youtube_dl/extractor/yandexmusic.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/youtube_dl/extractor/yandexmusic.py b/youtube_dl/extractor/yandexmusic.py
index a33fe3d..ce3723b 100644
--- a/youtube_dl/extractor/yandexmusic.py
+++ b/youtube_dl/extractor/yandexmusic.py
@@ -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