aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-07-26 11:08:55 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-07-26 11:08:55 +0800
commit5c32a77cad549f9d2f3f02ed4204e4591dd1889b (patch)
tree1a4b85ea25cafd62551c0ea686332b012d18adf4
parent14a28e705b3e27606c2fdbc242ae5a33c2e9f28e (diff)
downloadyoutube-dl-5c32a77cad549f9d2f3f02ed4204e4591dd1889b.tar.xz
[nextmovie] Remove extractor
This domain name now redirects to mtv.com
-rw-r--r--youtube_dl/extractor/nextmovie.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/youtube_dl/extractor/nextmovie.py b/youtube_dl/extractor/nextmovie.py
deleted file mode 100644
index 9ccd7d774..000000000
--- a/youtube_dl/extractor/nextmovie.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-from .mtv import MTVServicesInfoExtractor
-from ..compat import compat_urllib_parse_urlencode
-
-
-class NextMovieIE(MTVServicesInfoExtractor):
- IE_NAME = 'nextmovie.com'
- _VALID_URL = r'https?://(?:www\.)?nextmovie\.com/shows/[^/]+/\d{4}-\d{2}-\d{2}/(?P<id>[^/?#]+)'
- _FEED_URL = 'http://lite.dextr.mtvi.com/service1/dispatch.htm'
- _TESTS = [{
- 'url': 'http://www.nextmovie.com/shows/exclusives/2013-03-10/mgid:uma:videolist:nextmovie.com:1715019/',
- 'md5': '09a9199f2f11f10107d04fcb153218aa',
- 'info_dict': {
- 'id': '961726',
- 'ext': 'mp4',
- 'title': 'The Muppets\' Gravity',
- },
- }]
-
- def _get_feed_query(self, uri):
- return compat_urllib_parse_urlencode({
- 'feed': '1505',
- 'mgid': uri,
- })
-
- def _real_extract(self, url):
- mgid = self._match_id(url)
- return self._get_videos_info(mgid)