summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-12-31 20:52:47 +0100
committerremitamine <remitamine@gmail.com>2015-12-31 20:52:47 +0100
commit7f9134fb2db5559124a0f658bacb6bad54261043 (patch)
tree17aa5bf84313ee13463d3a7b07f3e1d2f4146919
parent91e274546c4492dfa8f216f311356f641859a7cc (diff)
downloadyoutube-dl-7f9134fb2db5559124a0f658bacb6bad54261043.tar.gz
youtube-dl-7f9134fb2db5559124a0f658bacb6bad54261043.tar.xz
youtube-dl-7f9134fb2db5559124a0f658bacb6bad54261043.zip
[tvland] inherit from MTVServicesInfoExtractor
-rw-r--r--youtube_dl/extractor/tvland.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/youtube_dl/extractor/tvland.py b/youtube_dl/extractor/tvland.py
index 7f049e076..b73279dec 100644
--- a/youtube_dl/extractor/tvland.py
+++ b/youtube_dl/extractor/tvland.py
@@ -1,13 +1,13 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
-from .mtv import MTVIE
+from .mtv import MTVServicesInfoExtractor
 
 
-class TVLandIE(MTVIE):
+class TVLandIE(MTVServicesInfoExtractor):
     IE_NAME = 'tvland.com'
     _VALID_URL = r'https?://(?:www\.)?tvland\.com/(?:video-clips|episodes)/(?P<id>[^/?#.]+)'
-    _FEED_URL = 'http://www.tvland.com/feeds/mrss/?uri='
+    _FEED_URL = 'http://www.tvland.com/feeds/mrss/'
     _TESTS = [{
         'url': 'http://www.tvland.com/episodes/hqhps2/everybody-loves-raymond-the-invasion-ep-048',
         'playlist': [
@@ -62,9 +62,3 @@ class TVLandIE(MTVIE):
             'description': 'md5:7d192f56ca8d958645c83f0de8ef0269'
         },
     }]
-
-    def _real_extract(self, url):
-        video_id = self._match_id(url)
-        webpage = self._download_webpage(url, video_id)
-        mgid = self._search_regex(r'data-mgid="([^"]+)"', webpage, 'mgid')
-        return self._get_videos_info_from_url(self._FEED_URL + mgid, video_id)