about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-01-14 06:23:24 +0700
committerSergey M․ <dstftw@gmail.com>2017-01-14 06:23:24 +0700
commite54fc0524ebf7e3ec02fbd22f00fce466c952791 (patch)
tree8cd983f06b3bbe22e0917d48fb3754aab03261cd
parentadf063dad1792f0c9c680d13ccd984b4ad60ac29 (diff)
downloadyoutube-dl-e54fc0524ebf7e3ec02fbd22f00fce466c952791.tar.gz
youtube-dl-e54fc0524ebf7e3ec02fbd22f00fce466c952791.tar.xz
youtube-dl-e54fc0524ebf7e3ec02fbd22f00fce466c952791.zip
[cmt] Add support for video-clips
-rw-r--r--youtube_dl/extractor/cmt.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cmt.py b/youtube_dl/extractor/cmt.py
index 6302b8d9c..f6b794fb3 100644
--- a/youtube_dl/extractor/cmt.py
+++ b/youtube_dl/extractor/cmt.py
@@ -5,7 +5,7 @@ from .mtv import MTVIE
 
 class CMTIE(MTVIE):
     IE_NAME = 'cmt.com'
-    _VALID_URL = r'https?://(?:www\.)?cmt\.com/(?:videos|shows|full-episodes)/(?P<id>[^/]+)'
+    _VALID_URL = r'https?://(?:www\.)?cmt\.com/(?:videos|shows|full-episodes|video-clips)/(?P<id>[^/]+)'
 
     _TESTS = [{
         'url': 'http://www.cmt.com/videos/garth-brooks/989124/the-call-featuring-trisha-yearwood.jhtml#artist=30061',
@@ -31,6 +31,12 @@ class CMTIE(MTVIE):
     }, {
         'url': 'http://www.cmt.com/shows/party-down-south/party-down-south-ep-407-gone-girl/1738172/playlist/#id=1738172',
         'only_matching': True,
+    }, {
+        'url': 'http://www.cmt.com/full-episodes/537qb3/nashville-the-wayfaring-stranger-season-5-ep-501',
+        'only_matching': True,
+    }, {
+        'url': 'http://www.cmt.com/video-clips/t9e4ci/nashville-juliette-in-2-minutes',
+        'only_matching': True,
     }]
 
     def _extract_mgid(self, webpage):