aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-14 06:22:12 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-14 06:22:12 +0600
commitd8a1caf04f1733d7c94f213af25c587addcea35b (patch)
treeda4216a7f7b970686308ec9cb60ddd004e74428c /youtube_dl/extractor/brightcove.py
parentcb33d389ed452583638f73360599642b86617dfb (diff)
downloadyoutube-dl-d8a1caf04f1733d7c94f213af25c587addcea35b.tar.xz
[brightcove:new] Style
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r--youtube_dl/extractor/brightcove.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 9ae724c2b..14ee05f21 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -402,10 +402,11 @@ class BrightcoveNewIE(InfoExtractor):
for _, url in re.findall(
r'<iframe[^>]+src=(["\'])((?:https?:)//players\.brightcove\.net/\d+/[^/]+/index\.html.+?)\1', webpage):
entries.append(url)
+
# Look for embed_in_page embeds [2]
- # According to examples from [3] it's unclear whether video id may be optional
- # and what to do when it is
for video_id, account_id, player_id, embed in re.findall(
+ # According to examples from [3] it's unclear whether video id
+ # may be optional and what to do when it is
r'''(?sx)
<video[^>]+
data-video-id=["\'](\d+)["\'][^>]*>.*?
@@ -417,6 +418,7 @@ class BrightcoveNewIE(InfoExtractor):
entries.append(
'http://players.brightcove.net/%s/%s_%s/index.html?videoId=%s'
% (account_id, player_id, embed, video_id))
+
return entries
def _real_extract(self, url):