summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-01-10 22:32:34 +0700
committerSergey M․ <dstftw@gmail.com>2017-01-10 22:32:34 +0700
commit10cd2003b4e939a13c020f94c0518252411f9ddf (patch)
tree856a21687a1c274b281eac39c5cd25a4ebe0a47f
parentcdd11c054013997b6f0053a3958b6e5b0aa698b6 (diff)
downloadyoutube-dl-10cd2003b4e939a13c020f94c0518252411f9ddf.tar.gz
youtube-dl-10cd2003b4e939a13c020f94c0518252411f9ddf.tar.xz
youtube-dl-10cd2003b4e939a13c020f94c0518252411f9ddf.zip
[nick] Add support for beta.nick.com (closes #11655)
-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 7672845bf..08a75929e 100644
--- a/youtube_dl/extractor/nick.py
+++ b/youtube_dl/extractor/nick.py
@@ -10,7 +10,7 @@ from ..utils import update_url_query
 class NickIE(MTVServicesInfoExtractor):
     # None of videos on the website are still alive?
     IE_NAME = 'nick.com'
-    _VALID_URL = r'https?://(?:www\.)?nick(?:jr)?\.com/(?:videos/clip|[^/]+/videos)/(?P<id>[^/?#.]+)'
+    _VALID_URL = r'https?://(?:(?:www|beta)\.)?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',
@@ -57,6 +57,9 @@ class NickIE(MTVServicesInfoExtractor):
     }, {
         'url': 'http://www.nickjr.com/paw-patrol/videos/pups-save-a-goldrush-s3-ep302-full-episode/',
         'only_matching': True,
+    }, {
+        'url': 'http://beta.nick.com/nicky-ricky-dicky-and-dawn/videos/nicky-ricky-dicky-dawn-301-full-episode/',
+        'only_matching': True,
     }]
 
     def _get_feed_query(self, uri):