From d05a1dbe7013d6314ec477b50d864726e509a872 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Sun, 31 May 2015 00:26:12 +0800 Subject: [PATCH] [porn91] Catch daily limit error --- youtube_dl/extractor/porn91.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/youtube_dl/extractor/porn91.py b/youtube_dl/extractor/porn91.py index ea1efc71b..c119c7e94 100644 --- a/youtube_dl/extractor/porn91.py +++ b/youtube_dl/extractor/porn91.py @@ -6,6 +6,7 @@ from .common import InfoExtractor from ..utils import ( parse_duration, int_or_none, + ExtractorError, ) @@ -29,6 +30,10 @@ class Porn91IE(InfoExtractor): url = 'http://91porn.com/view_video.php?viewkey=%s' % video_id self._set_cookie('91porn.com', 'language', 'cn_CN') webpage = self._download_webpage(url, video_id, "get HTML content") + + if '作为游客,你每天只可观看10个视频' in webpage: + raise ExtractorError('91 Porn says: Daily limit 10 videos exceeded', expected=True) + title = self._search_regex( r'
([^<]+)
', webpage, 'title') title = title.replace('\n', '')