From: Yen Chi Hsuan Date: Mon, 20 Apr 2015 18:32:10 +0000 (+0800) Subject: [bilibili] Capture the video-not-exist message X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=24e21613b670efefd2f284c8e7027023d0a64399;p=youtube-dl [bilibili] Capture the video-not-exist message --- diff --git a/youtube_dl/extractor/bilibili.py b/youtube_dl/extractor/bilibili.py index 75d744852..904d9a8b4 100644 --- a/youtube_dl/extractor/bilibili.py +++ b/youtube_dl/extractor/bilibili.py @@ -7,6 +7,7 @@ from .common import InfoExtractor from ..utils import ( int_or_none, unified_strdate, + ExtractorError, ) @@ -30,6 +31,8 @@ class BiliBiliIE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) + if self._search_regex(r'(此视频不存在或被删除)', webpage, 'error message', default=None): + raise ExtractorError('The video does not exist or was deleted', expected=True) video_code = self._search_regex( r'(?s)
(.*?)
', webpage, 'video code')