X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Ftubitv.py;h=4f86b3ee927541c8f31936103c3319ce48b97e72;hb=804c343a4ff252c46fcc4a36f73a913c8def9b93;hp=03e971e5e76753515fe855473987513e560aea7b;hpb=5196b988971716b9e9c5884d33c757a41aa4548a;p=youtube-dl.git diff --git a/youtube_dl/extractor/tubitv.py b/youtube_dl/extractor/tubitv.py index 03e971e5e..4f86b3ee9 100644 --- a/youtube_dl/extractor/tubitv.py +++ b/youtube_dl/extractor/tubitv.py @@ -59,6 +59,9 @@ 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): + self.raise_login_required('This video requires login') + title = self._og_search_title(webpage) description = self._og_search_description(webpage) thumbnail = self._og_search_thumbnail(webpage)