diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-01-26 21:49:34 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-01-26 21:49:34 +0700 |
commit | cf0cabbe5011228c78a3d88c1a1b179b10333d6c (patch) | |
tree | 9ad854bef1452f09274ad2f299fb2788b11ddf8d /youtube_dl/extractor/cmt.py | |
parent | 556dbe7fe35667cb061dbf0ee84d3a065ad11055 (diff) |
[cmt,mtv,southpark] Add support for episode URLs (closes #11837)
Diffstat (limited to 'youtube_dl/extractor/cmt.py')
-rw-r--r-- | youtube_dl/extractor/cmt.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/cmt.py b/youtube_dl/extractor/cmt.py index f6b794fb3..e701fbeab 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|video-clips)/(?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', |