[brightcove] Fix _extract_url (closes #12782)
[youtube-dl] / youtube_dl / extractor / brightcove.py
index 124497e95c7236b21d17419133cdb63cee55f955..c4fd96b3d7f14ddae4a2c2e9411a922cd42cd6f3 100644 (file)
@@ -484,8 +484,8 @@ class BrightcoveNewIE(InfoExtractor):
     }]
 
     @staticmethod
-    def _extract_url(webpage):
-        urls = BrightcoveNewIE._extract_urls(webpage)
+    def _extract_url(ie, webpage):
+        urls = BrightcoveNewIE._extract_urls(ie, webpage)
         return urls[0] if urls else None
 
     @staticmethod