[generic] Extract Brightcove New Studio embeds
This commit is contained in:
parent
24af85298e
commit
f6519f89b0
1 changed files with 4 additions and 4 deletions
|
@ -1321,10 +1321,10 @@ class GenericIE(InfoExtractor):
|
||||||
'entries': entries,
|
'entries': entries,
|
||||||
}
|
}
|
||||||
|
|
||||||
# Look for Brightcove In Page Embed:
|
# Look for Brightcove New Studio embeds
|
||||||
brightcove_in_page_embed_url = BrightcoveNewIE._extract_url(webpage)
|
bc_urls = BrightcoveNewIE._extract_urls(webpage)
|
||||||
if brightcove_in_page_embed_url:
|
if bc_urls:
|
||||||
return self.url_result(brightcove_in_page_embed_url, 'BrightcoveInPageEmbed')
|
return _playlist_from_matches(bc_urls, ie='BrightcoveNew')
|
||||||
|
|
||||||
# Look for embedded rtl.nl player
|
# Look for embedded rtl.nl player
|
||||||
matches = re.findall(
|
matches = re.findall(
|
||||||
|
|
Loading…
Reference in a new issue