aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-16 11:46:53 +0100
committerremitamine <remitamine@gmail.com>2016-03-16 11:46:53 +0100
commit354dbbd8808dc5e835c7042f84c175eb56e0bcfc (patch)
tree4e0e5d2707cd720a0d15c2d5b111f6f0bb902919 /youtube_dl
parent23edc49509052e06afe7032802a0f4deb6710b47 (diff)
downloadyoutube-dl-354dbbd8808dc5e835c7042f84c175eb56e0bcfc.tar.xz
[brightcove:new] extract protocol-less embed URLs(closes #2914)
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/brightcove.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 304fb89e3..3ab383461 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -413,8 +413,8 @@ class BrightcoveNewIE(InfoExtractor):
# Look for iframe embeds [1]
for _, url in re.findall(
- r'<iframe[^>]+src=(["\'])((?:https?:)//players\.brightcove\.net/\d+/[^/]+/index\.html.+?)\1', webpage):
- entries.append(url)
+ r'<iframe[^>]+src=(["\'])((?:https?:)?//players\.brightcove\.net/\d+/[^/]+/index\.html.+?)\1', webpage):
+ entries.append(url if url.startswith('http') else 'http:' + url)
# Look for embed_in_page embeds [2]
for video_id, account_id, player_id, embed in re.findall(