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