diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-14 05:54:16 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-14 05:54:16 +0600 |
commit | 4fcaa4f4a5ef328009bef53ebc491ebe76452550 (patch) | |
tree | 38cea6c4ac9f4266604598003d2e02d385edc86b /youtube_dl/extractor/safari.py | |
parent | 536f819eda975224666374a9ce83cc3472f5aa5a (diff) |
[brightcove] Rename extractor to brightcove legacy
Old embedding approaches are now "Legacy Studio"
Diffstat (limited to 'youtube_dl/extractor/safari.py')
-rw-r--r-- | youtube_dl/extractor/safari.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/safari.py b/youtube_dl/extractor/safari.py index a602af692..4f1f05c6a 100644 --- a/youtube_dl/extractor/safari.py +++ b/youtube_dl/extractor/safari.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import re from .common import InfoExtractor -from .brightcove import BrightcoveIE +from .brightcove import BrightcoveLegacyIE from ..compat import ( compat_urllib_parse, @@ -112,7 +112,7 @@ class SafariIE(SafariBaseIE): '%s/%s/chapter-content/%s.html' % (self._API_BASE, course_id, part), part) - bc_url = BrightcoveIE._extract_brightcove_url(webpage) + bc_url = BrightcoveLegacyIE._extract_brightcove_url(webpage) if not bc_url: raise ExtractorError('Could not extract Brightcove URL from %s' % url, expected=True) |