You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.2 KiB

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