about summary refs log tree commit diff
path: root/youtube_dl/extractor/mtv.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-24 10:50:14 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-24 10:50:14 +0100
commita54ffb8aa778062901dd15b020576bc7d472ae40 (patch)
tree67df436f28aa77af10905720fa56379b47a84d09 /youtube_dl/extractor/mtv.py
parent8add4bfecb73f44cffe3cbf33941fc409564149b (diff)
downloadyoutube-dl-a54ffb8aa778062901dd15b020576bc7d472ae40.tar.gz
youtube-dl-a54ffb8aa778062901dd15b020576bc7d472ae40.tar.xz
youtube-dl-a54ffb8aa778062901dd15b020576bc7d472ae40.zip
[mtv] add common IE_NAME prefix for MTVIE and MTVVideoIE
Diffstat (limited to 'youtube_dl/extractor/mtv.py')
-rw-r--r--youtube_dl/extractor/mtv.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dl/extractor/mtv.py b/youtube_dl/extractor/mtv.py
index 84a2dcb62..2e9580b10 100644
--- a/youtube_dl/extractor/mtv.py
+++ b/youtube_dl/extractor/mtv.py
@@ -270,7 +270,8 @@ class MTVServicesEmbeddedIE(MTVServicesInfoExtractor):
 
 
 class MTVIE(MTVServicesInfoExtractor):
-    _VALID_URL = r'(?x)https?://(?:www\.)?mtv\.com/(video-clips|full-episodes)/(?P<id>[^/?#.]+)'
+    IE_NAME = 'mtv'
+    _VALID_URL = r'https?://(?:www\.)?mtv\.com/(video-clips|full-episodes)/(?P<id>[^/?#.]+)'
     _FEED_URL = 'http://www.mtv.com/feeds/mrss/'
 
     _TESTS = [{
@@ -291,6 +292,7 @@ class MTVIE(MTVServicesInfoExtractor):
 
 
 class MTVVideoIE(MTVServicesInfoExtractor):
+    IE_NAME = 'mtv:video'
     _VALID_URL = r'''(?x)^https?://
         (?:(?:www\.)?mtv\.com/videos/.+?/(?P<videoid>[0-9]+)/[^/]+$|
            m\.mtv\.com/videos/video\.rbml\?.*?id=(?P<mgid>[^&]+))'''