youtube-dl

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

commit 1ae7ff771b17d16540aa446aef4f10971465a249
parent 5196b988971716b9e9c5884d33c757a41aa4548a
Author: Naglis Jonaitis <njonaitis@gmail.com>
Date:   Sat, 30 May 2015 14:33:27 +0300

[tubitv] Add error message for videos that require login (#5524)

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

diff --git a/youtube_dl/extractor/tubitv.py b/youtube_dl/extractor/tubitv.py @@ -59,6 +59,11 @@ class TubiTvIE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) + if re.search(r"<(?:DIV|div) class='login-required-screen'>", webpage): + raise ExtractorError( + 'This video requires login, use --username and --password ' + 'options to provide account credentials.', expected=True) + title = self._og_search_title(webpage) description = self._og_search_description(webpage) thumbnail = self._og_search_thumbnail(webpage)