Update gameinformer.py
This commit is contained in:
parent
f496591a11
commit
a215a496a2
@ -24,6 +24,10 @@ class GameInformerIE(InfoExtractor):
|
|||||||
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+)", r"<p><div id=\"bc_(\d+)"], webpage, 'brightcove id')
|
brightcove_id = self._search_regex(
|
||||||
return self.url_result(self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew', brightcove_id)
|
[r'<[^>]+\bid=["\']bc_(\d+)', r"getVideo\('[^']+video_id=(\d+)"],
|
||||||
|
webpage, 'brightcove id')
|
||||||
|
return self.url_result(
|
||||||
|
self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew',
|
||||||
|
brightcove_id)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user