[generic] remove Brightcove detection messages

Unnecessarily verbose since the extractor itself
will print messages prefixed by IE_NAME.
This commit is contained in:
John Hawkinson 2017-03-18 11:49:06 -04:00
parent 36fc7fb07a
commit a3915f69fa

View File

@ -1887,7 +1887,6 @@ class GenericIE(InfoExtractor):
# Look for Brightcove Legacy Studio embeds # Look for Brightcove Legacy Studio embeds
bc_urls = BrightcoveLegacyIE._extract_brightcove_urls(webpage) bc_urls = BrightcoveLegacyIE._extract_brightcove_urls(webpage)
if bc_urls: if bc_urls:
self.to_screen('Brightcove (legacy) video detected.')
entries = [{ entries = [{
'_type': 'url', '_type': 'url',
'url': smuggle_url(bc_url, {'Referer': url}), 'url': smuggle_url(bc_url, {'Referer': url}),
@ -1904,7 +1903,6 @@ class GenericIE(InfoExtractor):
# Look for Brightcove New Studio embeds # Look for Brightcove New Studio embeds
bc_urls = BrightcoveNewIE._extract_urls(webpage) bc_urls = BrightcoveNewIE._extract_urls(webpage)
if bc_urls: if bc_urls:
self.to_screen('Brightcove (new) video detected.')
return _playlist_from_matches(bc_urls, ie='BrightcoveNew') return _playlist_from_matches(bc_urls, ie='BrightcoveNew')
# Look for ThePlatform embeds # Look for ThePlatform embeds