projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5196b98
)
[tubitv] Add error message for videos that require login (#5524)
author
Naglis Jonaitis
<njonaitis@gmail.com>
Sat, 30 May 2015 11:33:27 +0000
(14:33 +0300)
committer
Naglis Jonaitis
<njonaitis@gmail.com>
Sat, 30 May 2015 11:33:27 +0000
(14:33 +0300)
youtube_dl/extractor/tubitv.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/tubitv.py
b/youtube_dl/extractor/tubitv.py
index 03e971e5e76753515fe855473987513e560aea7b..2c4b21807ce1dc276e8625463ac38fb63c8ff211 100644
(file)
--- 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)