about summary refs log tree commit diff
path: root/youtube_dl/extractor/comedycentral.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2016-08-02 14:02:31 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2016-08-02 14:02:31 +0200
commit6a9b3b61ea145ac03198bc81a67ee322d42a1bc1 (patch)
tree428935a304355ecb64ee07e31067b9c64a18bbef /youtube_dl/extractor/comedycentral.py
parent45408eb0750ac53f965756331022cbed3dbe2a38 (diff)
downloadyoutube-dl-6a9b3b61ea145ac03198bc81a67ee322d42a1bc1.tar.gz
youtube-dl-6a9b3b61ea145ac03198bc81a67ee322d42a1bc1.tar.xz
youtube-dl-6a9b3b61ea145ac03198bc81a67ee322d42a1bc1.zip
[comedycentral] Re-add shortnames
In cc99d4f826a942b18133fe4221c9de2f9197e860, the shortname feature got deleted by accident. Re-add it as a separate IE.
Diffstat (limited to 'youtube_dl/extractor/comedycentral.py')
-rw-r--r--youtube_dl/extractor/comedycentral.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/youtube_dl/extractor/comedycentral.py b/youtube_dl/extractor/comedycentral.py
index c76909e48..88346dde7 100644
--- a/youtube_dl/extractor/comedycentral.py
+++ b/youtube_dl/extractor/comedycentral.py
@@ -1,6 +1,7 @@
 from __future__ import unicode_literals
 
 from .mtv import MTVServicesInfoExtractor
+from .common import InfoExtractor
 
 
 class ComedyCentralIE(MTVServicesInfoExtractor):
@@ -96,3 +97,22 @@ class ComedyCentralTVIE(MTVServicesInfoExtractor):
             webpage, 'mrss url', group='url')
 
         return self._get_videos_info_from_url(mrss_url, video_id)
+
+
+class ComedyCentralShortnameIE(InfoExtractor):
+    _VALID_URL = r'^:(?P<id>tds|thedailyshow)$'
+    _TESTS = [{
+        'url': ':tds',
+        'only_matching': True,
+    }, {
+        'url': ':thedailyshow',
+        'only_matching': True,
+    }]
+
+    def _real_extract(self, url):
+        video_id = self._match_id(url)
+        shortcut_map = {
+            'tds': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
+            'thedailyshow': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
+        }
+        return self.url_result(shortcut_map[video_id])