Browse Source

[nowvideo] Recognize nowvideo.sx urls (fixes #2127)

Jaime Marquínez Ferrándiz 11 years ago
parent
commit
d2250ea7fd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/extractor/nowvideo.py

+ 1 - 1
youtube_dl/extractor/nowvideo.py

@@ -5,7 +5,7 @@ from ..utils import compat_urlparse
 
 
 
 
 class NowVideoIE(InfoExtractor):
 class NowVideoIE(InfoExtractor):
-    _VALID_URL = r'(?:https?://)?(?:www\.)?nowvideo\.ch/video/(?P<id>\w+)'
+    _VALID_URL = r'(?:https?://)?(?:www\.)?nowvideo\.(?:ch|sx)/video/(?P<id>\w+)'
     _TEST = {
     _TEST = {
         u'url': u'http://www.nowvideo.ch/video/0mw0yow7b6dxa',
         u'url': u'http://www.nowvideo.ch/video/0mw0yow7b6dxa',
         u'file': u'0mw0yow7b6dxa.flv',
         u'file': u'0mw0yow7b6dxa.flv',