diff options
Diffstat (limited to 'youtube_dl/extractor')
| -rw-r--r-- | youtube_dl/extractor/pornhub.py | 10 | ||||
| -rw-r--r-- | youtube_dl/extractor/twitch.py | 2 | 
2 files changed, 11 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pornhub.py b/youtube_dl/extractor/pornhub.py index 634142d0d..fb2032832 100644 --- a/youtube_dl/extractor/pornhub.py +++ b/youtube_dl/extractor/pornhub.py @@ -10,6 +10,7 @@ from ..compat import (      compat_urllib_request,  )  from ..utils import ( +    ExtractorError,      str_to_int,  )  from ..aes import ( @@ -44,6 +45,15 @@ class PornHubIE(InfoExtractor):          req.add_header('Cookie', 'age_verified=1')          webpage = self._download_webpage(req, video_id) +        error_msg = self._html_search_regex( +            r'(?s)<div class="userMessageSection[^"]*".*?>(.*?)</div>', +            webpage, 'error message', default=None) +        if error_msg: +            error_msg = re.sub(r'\s+', ' ', error_msg) +            raise ExtractorError( +                'PornHub said: %s' % error_msg, +                expected=True, video_id=video_id) +          video_title = self._html_search_regex(r'<h1 [^>]+>([^<]+)', webpage, 'title')          video_uploader = self._html_search_regex(              r'(?s)From: .+?<(?:a href="/users/|a href="/channels/|<span class="username)[^>]+>(.+?)<', diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 87e3c453d..340cadcf5 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -348,4 +348,4 @@ class TwitchStreamIE(TwitchBaseIE):              'view_count': view_count,              'formats': formats,              'is_live': True, -        }
\ No newline at end of file +        }  | 
