aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/safari.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-14 05:54:16 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-14 05:54:16 +0600
commit4fcaa4f4a5ef328009bef53ebc491ebe76452550 (patch)
tree38cea6c4ac9f4266604598003d2e02d385edc86b /youtube_dl/extractor/safari.py
parent536f819eda975224666374a9ce83cc3472f5aa5a (diff)
downloadyoutube-dl-4fcaa4f4a5ef328009bef53ebc491ebe76452550.zip
youtube-dl-4fcaa4f4a5ef328009bef53ebc491ebe76452550.tar.gz
youtube-dl-4fcaa4f4a5ef328009bef53ebc491ebe76452550.tar.bz2
[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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/safari.py b/youtube_dl/extractor/safari.py
index a602af6..4f1f05c 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)