mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[gameinformer] update the extractor to use BrightcoveNewIE
This commit is contained in:
parent
4230c4894d
commit
203f3d779a
@ -10,34 +10,21 @@ class GameInformerIE(InfoExtractor):
|
|||||||
_VALID_URL = r'https?://(?:www\.)?gameinformer\.com/(?:[^/]+/)*(?P<id>.+)\.aspx'
|
_VALID_URL = r'https?://(?:www\.)?gameinformer\.com/(?:[^/]+/)*(?P<id>.+)\.aspx'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'http://www.gameinformer.com/b/features/archive/2015/09/26/replay-animal-crossing.aspx',
|
'url': 'http://www.gameinformer.com/b/features/archive/2015/09/26/replay-animal-crossing.aspx',
|
||||||
|
'md5': '292f26da1ab4beb4c9099f1304d2b071',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '4515472681001',
|
'id': '4515472681001',
|
||||||
'ext': 'm3u8',
|
'ext': 'mp4',
|
||||||
'title': 'Replay - Animal Crossing',
|
'title': 'Replay - Animal Crossing',
|
||||||
'description': 'md5:2e211891b215c85d061adc7a4dd2d930',
|
'description': 'md5:2e211891b215c85d061adc7a4dd2d930',
|
||||||
'timestamp': 1443457610706,
|
'timestamp': 1443457610,
|
||||||
},
|
'upload_date': '20150928',
|
||||||
'params': {
|
'uploader_id': '694940074001',
|
||||||
# m3u8 download
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
BRIGHTCOVE_URL_TEMPLATE = 'http://players.brightcove.net/694940074001/default_default/index.html?videoId=%s'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
brightcove_id = self._search_regex(r"getVideo\('[^']+video_id=(\d+)", webpage, 'brightcove id')
|
||||||
bc_api_url = self._search_regex(r"getVideo\('([^']+)'", webpage, 'brightcove api url')
|
return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id)
|
||||||
json_data = self._download_json(
|
|
||||||
bc_api_url + '&video_fields=id,name,shortDescription,publishedDate,videoStillURL,length,IOSRenditions',
|
|
||||||
display_id)
|
|
||||||
|
|
||||||
return {
|
|
||||||
'id': compat_str(json_data['id']),
|
|
||||||
'display_id': display_id,
|
|
||||||
'url': json_data['IOSRenditions'][0]['url'],
|
|
||||||
'title': json_data['name'],
|
|
||||||
'description': json_data.get('shortDescription'),
|
|
||||||
'timestamp': int_or_none(json_data.get('publishedDate')),
|
|
||||||
'duration': int_or_none(json_data.get('length')),
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user