[yahoo] Look for Brightcove Legacy Studio embeds(closes #9345)
authorRemita Amine <remitamine@gmail.com>
Thu, 8 Sep 2016 15:42:47 +0000 (16:42 +0100)
committerRemita Amine <remitamine@gmail.com>
Thu, 8 Sep 2016 15:44:22 +0000 (16:44 +0100)
youtube_dl/extractor/yahoo.py

index d7a81ab8cc101fcd60720408fba05cd9aa8d1625..91f0a0dbbda4cfbc7fb3e1ea8b8c24798c7d1546 100644 (file)
@@ -19,7 +19,10 @@ from ..utils import (
     determine_ext,
 )
 
-from .brightcove import BrightcoveNewIE
+from .brightcove import (
+    BrightcoveLegacyIE,
+    BrightcoveNewIE,
+)
 from .nbc import NBCSportsVPlayerIE
 
 
@@ -223,6 +226,11 @@ class YahooIE(InfoExtractor):
         if nbc_sports_url:
             return self.url_result(nbc_sports_url, NBCSportsVPlayerIE.ie_key())
 
+        # Look for Brightcove Legacy Studio embeds
+        bc_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
+        if bc_url:
+            return self.url_result(bc_url, BrightcoveLegacyIE.ie_key())
+
         # Look for Brightcove New Studio embeds
         bc_url = BrightcoveNewIE._extract_url(webpage)
         if bc_url: