mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-20 18:30:09 +09:00
[BFIPlayer] Support Brightcove video host, replacing Ooyala
This commit is contained in:
parent
74e39ca0fd
commit
d7b502a727
@ -4,7 +4,12 @@ from __future__ import unicode_literals
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import extract_attributes
|
from ..utils import (
|
||||||
|
extract_attributes,
|
||||||
|
parse_qs,
|
||||||
|
remove_start,
|
||||||
|
smuggle_url,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class BFIPlayerIE(InfoExtractor):
|
class BFIPlayerIE(InfoExtractor):
|
||||||
@ -12,26 +17,39 @@ class BFIPlayerIE(InfoExtractor):
|
|||||||
_VALID_URL = r'https?://player\.bfi\.org\.uk/[^/]+/film/watch-(?P<id>[\w-]+)-online'
|
_VALID_URL = r'https?://player\.bfi\.org\.uk/[^/]+/film/watch-(?P<id>[\w-]+)-online'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://player.bfi.org.uk/free/film/watch-computer-doctor-1974-online',
|
'url': 'https://player.bfi.org.uk/free/film/watch-computer-doctor-1974-online',
|
||||||
'md5': 'e8783ebd8e061ec4bc6e9501ed547de8',
|
'md5': '15598bdd6a413ce9363970754f054d76',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': 'htNnhlZjE60C9VySkQEIBtU-cNV1Xx63',
|
'id': 'htNnhlZjE60C9VySkQEIBtU-cNV1Xx63',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Computer Doctor',
|
'title': 'Computer Doctor',
|
||||||
'description': 'md5:fb6c240d40c4dbe40428bdd62f78203b',
|
'description': 'md5:fb6c240d40c4dbe40428bdd62f78203b',
|
||||||
|
'timestamp': 1564424975,
|
||||||
|
'upload_date': '20190729',
|
||||||
|
'uploader_id': '6057949427001',
|
||||||
},
|
},
|
||||||
'skip': 'BFI Player films cannot be played outside of the UK',
|
# 'skip': 'BFI Player films cannot be played outside of the UK',
|
||||||
}
|
}
|
||||||
|
_BRIGHTCOVE_ACCOUNT_ID = '6057949427001'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
entries = []
|
|
||||||
for player_el in re.findall(r'(?s)<[^>]+class="player"[^>]*>', webpage):
|
film_only = 'play-film' in parse_qs(url, keep_blank_values=True)
|
||||||
player_attr = extract_attributes(player_el)
|
|
||||||
ooyala_id = player_attr.get('data-video-id')
|
def entries():
|
||||||
if not ooyala_id:
|
for player_el in re.finditer(r'(?s)<video-js\b[^>]+>', webpage):
|
||||||
|
player_attr = extract_attributes(player_el.group(0))
|
||||||
|
bcv_id, account_id, player_id, embed = (
|
||||||
|
player_attr.get(x) for x in ('data-ref-id', 'data-acid', 'data-pid', 'data-embed'))
|
||||||
|
if not bcv_id:
|
||||||
continue
|
continue
|
||||||
entries.append(self.url_result(
|
if film_only and player_attr.get('data-video-type') != 'film':
|
||||||
'ooyala:' + ooyala_id, 'Ooyala',
|
continue
|
||||||
ooyala_id, player_attr.get('data-label')))
|
bc_url = 'brightcove:new:%s:%s:%s:video:ref:%s' % (
|
||||||
return self.playlist_result(entries)
|
account_id or self._BRIGHTCOVE_ACCOUNT_ID, player_id or 'default', embed or 'default', bcv_id)
|
||||||
|
|
||||||
|
yield self.url_result(smuggle_url(
|
||||||
|
bc_url, {'referrer': url, 'force_videoid': remove_start(bcv_id, 'ref:')}), ie='BrightcoveNew', video_id=video_id)
|
||||||
|
|
||||||
|
return self.playlist_result(entries())
|
||||||
|
Loading…
Reference in New Issue
Block a user