mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-24 04:56:55 +01:00
[generic] Extract Brightcove New Studio embeds
This commit is contained in:
parent
24af85298e
commit
f6519f89b0
@ -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 New Issue
Block a user