[bliptv] remove extractor and add support for site replacement(makertv)
[youtube-dl] / youtube_dl / extractor / gametrailers.py
1 from __future__ import unicode_literals
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         'url': 'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
10         'md5': '4c8e67681a0ea7ec241e8c09b3ea8cf7',
11         'info_dict': {
12             'id': '70e9a5d7-cf25-4a10-9104-6f3e7342ae0d',
13             'ext': 'mp4',
14             'title': 'E3 2013: Debut Trailer',
15             'description': 'Faith is back!  Check out the World Premiere trailer for Mirror\'s Edge 2 straight from the EA Press Conference at E3 2013!',
16         },
17     }
18
19     _FEED_URL = 'http://www.gametrailers.com/feeds/mrss'