youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 24e21613b670efefd2f284c8e7027023d0a64399
parent c6391cd587a26eb3d9bba7296be804f14612e919
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Tue, 21 Apr 2015 02:32:10 +0800

[bilibili] Capture the video-not-exist message

Diffstat:
Myoutube_dl/extractor/bilibili.py | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git 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)<div itemprop="video".*?>(.*?)</div>', webpage, 'video code')