youtube-dl

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

commit d5bb814d348558a9700f9d8d2a063a2de2de4274
parent d156a1d981b2773e1c35c9eb7d9b9a3bbcea7c96
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun, 11 Jan 2015 15:42:53 +0600

[veehd] Capture removed video message

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

diff --git a/youtube_dl/extractor/veehd.py b/youtube_dl/extractor/veehd.py @@ -8,6 +8,7 @@ from ..compat import ( compat_urlparse, ) from ..utils import ( + ExtractorError, clean_html, get_element_by_id, ) @@ -34,6 +35,10 @@ class VeeHDIE(InfoExtractor): # See https://github.com/rg3/youtube-dl/issues/2102 self._download_webpage(url, video_id, 'Requesting webpage') webpage = self._download_webpage(url, video_id) + + if 'This video has been removed<' in webpage: + raise ExtractorError('Video %s has been removed' % video_id, expected=True) + player_path = self._search_regex( r'\$\("#playeriframe"\).attr\({src : "(.+?)"', webpage, 'player path')