[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
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D
3 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@ class NownessBaseIE(InfoExtractor):
bc_url = BrightcoveLegacyIE._extract_brightcove_url(player_code)
if bc_url:
return self.url_result(bc_url, BrightcoveLegacyIE.ie_key())
bc_url = BrightcoveNewIE._extract_url(player_code)
bc_url = BrightcoveNewIE._extract_url(self, player_code)
if bc_url:
return self.url_result(bc_url, BrightcoveNewIE.ie_key())
raise ExtractorError('Could not find player definition')