]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/gametrailers.py
Imported Upstream version 2013.12.23
[youtubedl] / youtube_dl / extractor / gametrailers.py
1 import re
2
3 from .mtv import MTVServicesInfoExtractor
4
5
6 class GametrailersIE(MTVServicesInfoExtractor):
7 _VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)'
8 _TEST = {
9 u'url': u'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
10 u'file': u'70e9a5d7-cf25-4a10-9104-6f3e7342ae0d.mp4',
11 u'md5': u'4c8e67681a0ea7ec241e8c09b3ea8cf7',
12 u'info_dict': {
13 u'title': u'E3 2013: Debut Trailer',
14 u'description': u'Faith is back! Check out the World Premiere trailer for Mirror\'s Edge 2 straight from the EA Press Conference at E3 2013!',
15 },
16 }
17
18 _FEED_URL = 'http://www.gametrailers.com/feeds/mrss'
19
20 def _real_extract(self, url):
21 mobj = re.match(self._VALID_URL, url)
22 video_id = mobj.group('id')
23 webpage = self._download_webpage(url, video_id)
24 mgid = self._search_regex([r'data-video="(?P<mgid>mgid:.*?)"',
25 r'data-contentId=\'(?P<mgid>mgid:.*?)\''],
26 webpage, u'mgid')
27 return self._get_videos_info(mgid)