1
0
mirror of https://github.com/ytdl-org/youtube-dl/ synced 2025-12-10 09:32:41 +01:00

[ustream] Detect https embeds (closes #29133)

This commit is contained in:
Sergey M․
2021-05-30 03:43:59 +07:00
parent 6511b8e8d7
commit 2ee6c7f110

View File

@@ -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')