aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/nowness.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-11-14 06:11:49 +0600
committerSergey M․ <dstftw@gmail.com>2015-11-14 06:11:49 +0600
commit967e0955f007d4a348cf66cde818a903720d755f (patch)
treecb9a514b0f69e121039098409cc2b66c76dbb425 /youtube_dl/extractor/nowness.py
parent4e21b3a94f1ce7ba3757d59d1ac4baf9efaeed84 (diff)
parente01b432ad38b36b1ba6cb1b6dccecec51f9fc1e7 (diff)
downloadhypervideo-pre-967e0955f007d4a348cf66cde818a903720d755f.tar.lz
hypervideo-pre-967e0955f007d4a348cf66cde818a903720d755f.tar.xz
hypervideo-pre-967e0955f007d4a348cf66cde818a903720d755f.zip
Merge branch 'remitamine-brightcove_in_page_embed'
Diffstat (limited to 'youtube_dl/extractor/nowness.py')
-rw-r--r--youtube_dl/extractor/nowness.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/nowness.py b/youtube_dl/extractor/nowness.py
index b97f62fdb..0fba55833 100644
--- a/youtube_dl/extractor/nowness.py
+++ b/youtube_dl/extractor/nowness.py
@@ -1,7 +1,7 @@
# encoding: utf-8
from __future__ import unicode_literals
-from .brightcove import BrightcoveIE
+from .brightcove import BrightcoveLegacyIE
from .common import InfoExtractor
from ..utils import ExtractorError
from ..compat import (
@@ -22,10 +22,10 @@ class NownessBaseIE(InfoExtractor):
'http://www.nowness.com/iframe?id=%s' % video_id, video_id,
note='Downloading player JavaScript',
errnote='Unable to download player JavaScript')
- bc_url = BrightcoveIE._extract_brightcove_url(player_code)
+ bc_url = BrightcoveLegacyIE._extract_brightcove_url(player_code)
if bc_url is None:
raise ExtractorError('Could not find player definition')
- return self.url_result(bc_url, 'Brightcove')
+ return self.url_result(bc_url, 'BrightcoveLegacy')
elif source == 'vimeo':
return self.url_result('http://vimeo.com/%s' % video_id, 'Vimeo')
elif source == 'youtube':