diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-01-12 12:42:06 +0100 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2014-01-12 12:42:06 +0100 |
commit | d2250ea7fda03acd889995bc3181c3a3038afa09 (patch) | |
tree | 38c86d3065d53b57aae6b32390a40d9fb7ed8a30 | |
parent | cede88e5bbb0298ac3ca4309588666459feba8e6 (diff) |
[nowvideo] Recognize nowvideo.sx urls (fixes #2127)
-rw-r--r-- | youtube_dl/extractor/nowvideo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nowvideo.py b/youtube_dl/extractor/nowvideo.py index 241cc160b..168ca8b9f 100644 --- a/youtube_dl/extractor/nowvideo.py +++ b/youtube_dl/extractor/nowvideo.py @@ -5,7 +5,7 @@ from ..utils import compat_urlparse 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 = { u'url': u'http://www.nowvideo.ch/video/0mw0yow7b6dxa', u'file': u'0mw0yow7b6dxa.flv', |