summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-07-08 15:11:28 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-07-08 15:11:28 +0800
commit0ab7f4fe2b0006b6eaf81fcbf31c0cde7a1a14d5 (patch)
tree297441a2fc20f208b2201389e56eb3dd9c8b09c1
parent29c4a07776605a9fa5bbac56f49447875f56884d (diff)
downloadyoutube-dl-0ab7f4fe2b0006b6eaf81fcbf31c0cde7a1a14d5.tar.gz
youtube-dl-0ab7f4fe2b0006b6eaf81fcbf31c0cde7a1a14d5.tar.xz
youtube-dl-0ab7f4fe2b0006b6eaf81fcbf31c0cde7a1a14d5.zip
[nick] support nickjr.com (closes #7542)
-rw-r--r--youtube_dl/extractor/nick.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nick.py b/youtube_dl/extractor/nick.py
index e96013791..4935002d0 100644
--- a/youtube_dl/extractor/nick.py
+++ b/youtube_dl/extractor/nick.py
@@ -8,7 +8,7 @@ from ..utils import update_url_query
 
 class NickIE(MTVServicesInfoExtractor):
     IE_NAME = 'nick.com'
-    _VALID_URL = r'https?://(?:www\.)?nick\.com/videos/clip/(?P<id>[^/?#.]+)'
+    _VALID_URL = r'https?://(?:www\.)?nick(?:jr)?\.com/(?:videos/clip|[^/]+/videos)/(?P<id>[^/?#.]+)'
     _FEED_URL = 'http://udat.mtvnservices.com/service1/dispatch.htm'
     _TESTS = [{
         'url': 'http://www.nick.com/videos/clip/alvinnn-and-the-chipmunks-112-full-episode.html',
@@ -52,6 +52,9 @@ class NickIE(MTVServicesInfoExtractor):
                 }
             },
         ],
+    }, {
+        'url': 'http://www.nickjr.com/paw-patrol/videos/pups-save-a-goldrush-s3-ep302-full-episode/',
+        'only_matching': True,
     }]
 
     def _get_feed_query(self, uri):