[brightcove] Fix _extract_url (closes #12782)

This commit is contained in:
Sergey M․
2017-04-18 21:46:25 +07:00
parent bf1b87cd91
commit f631b55791
3 changed files with 4 additions and 4 deletions

View File

@ -258,7 +258,7 @@ class YahooIE(InfoExtractor):
return self.url_result(bc_url, BrightcoveLegacyIE.ie_key())
# Look for Brightcove New Studio embeds
bc_url = BrightcoveNewIE._extract_url(webpage)
bc_url = BrightcoveNewIE._extract_url(self, webpage)
if bc_url:
return self.url_result(bc_url, BrightcoveNewIE.ie_key())