From 14eb1ee1cbcc052f5e9164f783f3e03043c25aa0 Mon Sep 17 00:00:00 2001 From: pukkandan Date: Tue, 1 Jun 2021 02:37:01 +0530 Subject: Update to ytdl-commit-d495292 [ard] Relax _VALID_URL and fix video ids https://github.com/ytdl-org/youtube-dl/commit/d495292852b6c2f1bd58bc2141ff2b0265c952cf Closes #357 --- yt_dlp/extractor/ustream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yt_dlp/extractor/ustream.py') diff --git a/yt_dlp/extractor/ustream.py b/yt_dlp/extractor/ustream.py index 9e860aeb7..1e29cbe22 100644 --- a/yt_dlp/extractor/ustream.py +++ b/yt_dlp/extractor/ustream.py @@ -75,7 +75,7 @@ class UstreamIE(InfoExtractor): @staticmethod def _extract_url(webpage): mobj = re.search( - r']+?src=(["\'])(?Phttp://(?:www\.)?(?:ustream\.tv|video\.ibm\.com)/embed/.+?)\1', webpage) + r']+?src=(["\'])(?Phttps?://(?:www\.)?(?:ustream\.tv|video\.ibm\.com)/embed/.+?)\1', webpage) if mobj is not None: return mobj.group('url') -- cgit v1.2.3