From 9334f8f17a0e6a2b97d4e20b12a9ede52e4c0b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Tue, 28 Oct 2014 21:06:07 +0700 Subject: [PATCH] [vk] Handle deleted videos --- youtube_dl/extractor/vk.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/youtube_dl/extractor/vk.py b/youtube_dl/extractor/vk.py index 918bd1098..837c3167e 100644 --- a/youtube_dl/extractor/vk.py +++ b/youtube_dl/extractor/vk.py @@ -142,6 +142,10 @@ class VKIE(InfoExtractor): raise ExtractorError('This video is only available for registered users, ' 'use --username and --password options to provide account credentials.', expected=True) + if 'Unknown error' in info_page: + raise ExtractorError( + 'Video %s does not exist' % video_id, expected=True) + m_yt = re.search(r'src="(http://www.youtube.com/.*?)"', info_page) if m_yt is not None: self.to_screen('Youtube video detected')