|
|
@ -52,7 +52,7 @@ class ThisOldHouseIE(InfoExtractor):
|
|
|
|
video_url = self._search_regex(
|
|
|
|
video_url = self._search_regex(
|
|
|
|
r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})[^\'"]*)[\'"]',
|
|
|
|
r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})[^\'"]*)[\'"]',
|
|
|
|
webpage, 'video url')
|
|
|
|
webpage, 'video url')
|
|
|
|
if 'subscription_required=true' in video_url:
|
|
|
|
if 'subscription_required=true' in video_url or 'c-entry-group-labels__image' in webpage:
|
|
|
|
return self.url_result(self._request_webpage(HEADRequest(video_url), display_id).geturl(), 'Zype', display_id)
|
|
|
|
return self.url_result(self._request_webpage(HEADRequest(video_url), display_id).geturl(), 'Zype', display_id)
|
|
|
|
video_id = self._search_regex(r'(?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})', video_url, 'video id')
|
|
|
|
video_id = self._search_regex(r'(?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})', video_url, 'video id')
|
|
|
|
return self.url_result(self._ZYPE_TMPL % video_id, 'Zype', video_id)
|
|
|
|
return self.url_result(self._ZYPE_TMPL % video_id, 'Zype', video_id)
|
|
|
|