Explorar o código

[brightcove] Only use url from meta element if it has the 'playerKey' field (fixes #2738)

Jaime Marquínez Ferrándiz %!s(int64=11) %!d(string=hai) anos
pai
achega
381640e3ac
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  1. 5 1
      youtube_dl/extractor/brightcove.py

+ 5 - 1
youtube_dl/extractor/brightcove.py

@@ -140,7 +140,11 @@ class BrightcoveIE(InfoExtractor):
 
         url_m = re.search(r'<meta\s+property="og:video"\s+content="(http://c.brightcove.com/[^"]+)"', webpage)
         if url_m:
-            return [unescapeHTML(url_m.group(1))]
+            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:
+                return [url]
 
         matches = re.findall(
             r'''(?sx)<object