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.

19 lines
795 B

  1. from __future__ import unicode_literals
  2. from .mtv import MTVServicesInfoExtractor
  3. class GametrailersIE(MTVServicesInfoExtractor):
  4. _VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)'
  5. _TEST = {
  6. 'url': 'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
  7. 'md5': '4c8e67681a0ea7ec241e8c09b3ea8cf7',
  8. 'info_dict': {
  9. 'id': '70e9a5d7-cf25-4a10-9104-6f3e7342ae0d',
  10. 'ext': 'mp4',
  11. 'title': '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'