]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/gameinformer.py
2 from __future__
import unicode_literals
4 from .common
import InfoExtractor
7 class GameInformerIE(InfoExtractor
):
8 _VALID_URL
= r
'https?://(?:www\.)?gameinformer\.com/(?:[^/]+/)*(?P<id>.+)\.aspx'
10 'url': 'http://www.gameinformer.com/b/features/archive/2015/09/26/replay-animal-crossing.aspx',
11 'md5': '292f26da1ab4beb4c9099f1304d2b071',
13 'id': '4515472681001',
15 'title': 'Replay - Animal Crossing',
16 'description': 'md5:2e211891b215c85d061adc7a4dd2d930',
17 'timestamp': 1443457610,
18 'upload_date': '20150928',
19 'uploader_id': '694940074001',
22 BRIGHTCOVE_URL_TEMPLATE
= 'http://players.brightcove.net/694940074001/default_default/index.html?videoId=%s'
24 def _real_extract(self
, url
):
25 display_id
= self
._match
_id
(url
)
26 webpage
= self
._download
_webpage
(
27 url
, display_id
, headers
=self
.geo_verification_headers())
28 brightcove_id
= self
._search
_regex
(
29 [r
'<[^>]+\bid=["\']bc_(\d
+)', r"getVideo\('[^
']+video_id=(\d+)"],
30 webpage, 'brightcove
id')
31 return self.url_result(
32 self.BRIGHTCOVE_URL_TEMPLATE % brightcove_id, 'BrightcoveNew
',