File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ def _real_extract(self, url):
52
52
video_url = self ._search_regex (
53
53
r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})[^\'"]*)[\'"]' ,
54
54
webpage , 'video url' )
55
- if 'subscription_required=true' in video_url :
55
+ if 'subscription_required=true' in video_url or 'c-entry-group-labels__image' in webpage :
56
56
return self .url_result (self ._request_webpage (HEADRequest (video_url ), display_id ).geturl (), 'Zype' , display_id )
57
57
video_id = self ._search_regex (r'(?:https?:)?//(?:www\.)?thisoldhouse\.(?:chorus\.build|com)/videos/zype/([0-9a-f]{24})' , video_url , 'video id' )
58
58
return self .url_result (self ._ZYPE_TMPL % video_id , 'Zype' , video_id )
You can’t perform that action at this time.
0 commit comments