[ustream] Detect https embeds (closes #29133)

pull/29174/merge
Sergey M․ 3 years ago
parent 6511b8e8d7
commit 2ee6c7f110
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -75,7 +75,7 @@ class UstreamIE(InfoExtractor):
@staticmethod
def _extract_url(webpage):
mobj = re.search(
r'<iframe[^>]+?src=(["\'])(?P<url>http://(?:www\.)?(?:ustream\.tv|video\.ibm\.com)/embed/.+?)\1', webpage)
r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?(?:ustream\.tv|video\.ibm\.com)/embed/.+?)\1', webpage)
if mobj is not None:
return mobj.group('url')

Loading…
Cancel
Save