From 7df97fb59f7994c32ecf552ee9dfec6c6be3bb1e Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Fri, 22 Jun 2012 13:57:17 +0200 Subject: display a meaningful error message on rental videos (#359) --- youtube-dl | Bin 40256 -> 40544 bytes youtube-dl.exe | Bin 3989217 -> 3989624 bytes youtube_dl/InfoExtractors.py | 5 +++++ 3 files changed, 5 insertions(+) diff --git a/youtube-dl b/youtube-dl index f65e97fd0..66e5ff537 100755 Binary files a/youtube-dl and b/youtube-dl differ diff --git a/youtube-dl.exe b/youtube-dl.exe index 6d19ef5ea..984c92c42 100755 Binary files a/youtube-dl.exe and b/youtube-dl.exe differ diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 40f96ad76..d02bd29f7 100644 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -311,6 +311,11 @@ class YoutubeIE(InfoExtractor): self._downloader.trouble(u'ERROR: "token" parameter not in video info for unknown reason') return + # Check for "rental" videos + if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info: + self._downloader.trouble(u'ERROR: "rental" videos not supported') + return + # Start extracting information self.report_information_extraction(video_id) -- cgit v1.2.3