Browse Source

[brightcove:new] extract protocol-less embed URLs(closes #2914)

totalwebcasting
remitamine 9 years ago
parent
commit
354dbbd880
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/extractor/brightcove.py

+ 2
- 2
youtube_dl/extractor/brightcove.py View File

@ -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(


Loading…
Cancel
Save