aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/gametrailers.py
diff options
context:
space:
mode:
Diffstat (limited to 'youtube_dl/extractor/gametrailers.py')
-rw-r--r--youtube_dl/extractor/gametrailers.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/youtube_dl/extractor/gametrailers.py b/youtube_dl/extractor/gametrailers.py
deleted file mode 100644
index a6ab795ae..000000000
--- a/youtube_dl/extractor/gametrailers.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from __future__ import unicode_literals
-
-from .mtv import MTVServicesInfoExtractor
-
-
-class GametrailersIE(MTVServicesInfoExtractor):
- _VALID_URL = r'http://www\.gametrailers\.com/(?P<type>videos|reviews|full-episodes)/(?P<id>.*?)/(?P<title>.*)'
- _TEST = {
- 'url': 'http://www.gametrailers.com/videos/zbvr8i/mirror-s-edge-2-e3-2013--debut-trailer',
- 'md5': '4c8e67681a0ea7ec241e8c09b3ea8cf7',
- 'info_dict': {
- 'id': '70e9a5d7-cf25-4a10-9104-6f3e7342ae0d',
- 'ext': 'mp4',
- 'title': 'E3 2013: Debut Trailer',
- 'description': 'Faith is back! Check out the World Premiere trailer for Mirror\'s Edge 2 straight from the EA Press Conference at E3 2013!',
- },
- }
-
- _FEED_URL = 'http://www.gametrailers.com/feeds/mrss'