diff options
author | Sergey M․ <dstftw@gmail.com> | 2014-11-29 22:16:35 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2014-11-29 22:16:35 +0600 |
commit | e987e91fcc2437a219834025e12432879e4fd93b (patch) | |
tree | ac649af2a6a517db6bc91bf879a64eac90e5b16e /youtube_dl/extractor/playvid.py | |
parent | cb6444e1971f001d14683e5040beccbf1d253d94 (diff) |
[playvid] Capture and output error message
Diffstat (limited to 'youtube_dl/extractor/playvid.py')
-rw-r--r-- | youtube_dl/extractor/playvid.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dl/extractor/playvid.py b/youtube_dl/extractor/playvid.py index b1322f13f..cd3905acb 100644 --- a/youtube_dl/extractor/playvid.py +++ b/youtube_dl/extractor/playvid.py @@ -4,6 +4,8 @@ import re from .common import InfoExtractor from ..utils import ( + ExtractorError, + clean_html, compat_urllib_parse, ) @@ -28,6 +30,11 @@ class PlayvidIE(InfoExtractor): webpage = self._download_webpage(url, video_id) + m_error = re.search( + r'<div class="block-error">\s*<div class="heading">\s*<div>(?P<msg>.+?)</div>\s*</div>', webpage) + if m_error: + raise ExtractorError(clean_html(m_error.group('msg')), expected=True) + video_title = None duration = None video_thumbnail = None |