summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-24 02:41:21 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-24 02:41:21 +0200
commite1ab5000b2429e2421e2d38489b197d525eebf0f (patch)
treeb5fd0c8a908844891b55edfbe4a5569ecc2880af
parenta5ed3e571eea337b012dd5770472197c1cb6894b (diff)
downloadyoutube-dl-e1ab5000b2429e2421e2d38489b197d525eebf0f.tar.gz
youtube-dl-e1ab5000b2429e2421e2d38489b197d525eebf0f.tar.xz
youtube-dl-e1ab5000b2429e2421e2d38489b197d525eebf0f.zip
[brightcove] Add support for videoId= in og:video meta (Fixes #3571)
-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 7aa8a7654..294670386 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -154,12 +154,14 @@ class BrightcoveIE(InfoExtractor):
     def _extract_brightcove_urls(cls, webpage):
         """Return a list of all Brightcove URLs from the webpage """
 
-        url_m = re.search(r'<meta\s+property="og:video"\s+content="(http://c.brightcove.com/[^"]+)"', webpage)
+        url_m = re.search(
+            r'<meta\s+property="og:video"\s+content="(https?://(?:secure|c)\.brightcove.com/[^"]+)"',
+            webpage)
         if url_m:
             url = unescapeHTML(url_m.group(1))
             # Some sites don't add it, we can't download with this url, for example:
             # http://www.ktvu.com/videos/news/raw-video-caltrain-releases-video-of-man-almost/vCTZdY/
-            if 'playerKey' in url:
+            if 'playerKey' in url or 'videoId' in url:
                 return [url]
 
         matches = re.findall(