]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/gametrailers.py
[veehd] Send requests twice (Fixes #2102)
[yt-dlp.git] / youtube_dl / extractor / gametrailers.py
CommitLineData
9f4e6bba
PH
1import re
2
84db8181 3from .mtv import MTVServicesInfoExtractor
9f4e6bba 4
84db8181
JMF
5
6class GametrailersIE(MTVServicesInfoExtractor):
c0ade33e 7 _VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)'
6f5ac90c
PH
8 _TEST = {
9 u'url': u'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
ab2f744b
JMF
10 u'file': u'70e9a5d7-cf25-4a10-9104-6f3e7342ae0d.mp4',
11 u'md5': u'4c8e67681a0ea7ec241e8c09b3ea8cf7',
6f5ac90c 12 u'info_dict': {
ab2f744b
JMF
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!',
6f5ac90c 15 },
6f5ac90c 16 }
ab2f744b
JMF
17
18 _FEED_URL = 'http://www.gametrailers.com/feeds/mrss'
19
9f4e6bba
PH
20 def _real_extract(self, url):
21 mobj = re.match(self._VALID_URL, url)
9f4e6bba 22 video_id = mobj.group('id')
9f4e6bba 23 webpage = self._download_webpage(url, video_id)
41897817
JMF
24 mgid = self._search_regex([r'data-video="(?P<mgid>mgid:.*?)"',
25 r'data-contentId=\'(?P<mgid>mgid:.*?)\''],
26 webpage, u'mgid')
ab2f744b 27 return self._get_videos_info(mgid)