X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fnovamov.py;h=d68c1ad7923ac56c6bef68343a20df24e4aa5ffb;hb=974c1b2d4292308a26a47136e7fcf9b61f8b285a;hp=422fb993da92310effc6c03dabf5100a6899e79c;hpb=f6abca506ef5274cfab151027bb3624d7b0e6a6b;p=youtube-dl diff --git a/youtube_dl/extractor/novamov.py b/youtube_dl/extractor/novamov.py index 422fb993d..d68c1ad79 100644 --- a/youtube_dl/extractor/novamov.py +++ b/youtube_dl/extractor/novamov.py @@ -17,7 +17,7 @@ class NovaMovIE(InfoExtractor): IE_NAME = 'novamov' IE_DESC = 'NovaMov' - _VALID_URL_TEMPLATE = r'http://(?:(?:www\.)?%(host)s/(?:file|video)/|(?:(?:embed|www)\.)%(host)s/embed\.php\?(?:.*?&)?v=)(?P[a-z\d]{13})' + _VALID_URL_TEMPLATE = r'http://(?:(?:www\.)?%(host)s/(?:file|video|mobile/#/videos)/|(?:(?:embed|www)\.)%(host)s/embed\.php\?(?:.*?&)?v=)(?P[a-z\d]{13})' _VALID_URL = _VALID_URL_TEMPLATE % {'host': 'novamov\.com'} _HOST = 'www.novamov.com' @@ -59,7 +59,7 @@ class NovaMovIE(InfoExtractor): self._FILEKEY_REGEX, webpage, 'filekey', default=default) if filekey is not default and (filekey[0] != '"' or filekey[-1] != '"'): return self._search_regex( - r'var\s*%s\s*=\s*"([^"]+)"', webpage, 'filekey', default=default) + r'var\s+%s\s*=\s*"([^"]+)"' % re.escape(filekey), webpage, 'filekey', default=default) else: return filekey @@ -141,15 +141,14 @@ class NowVideoIE(NovaMovIE): _DESCRIPTION_REGEX = r'\s*

([^<]+)

' _TEST = { - 'url': 'http://www.nowvideo.to/video/0mw0yow7b6dxa', - 'md5': 'f8fbbc8add72bd95b7850c6a02fc8817', + 'url': 'http://www.nowvideo.sx/video/f1d6fce9a968b', + 'md5': '12c82cad4f2084881d8bc60ee29df092', 'info_dict': { - 'id': '0mw0yow7b6dxa', + 'id': 'f1d6fce9a968b', 'ext': 'flv', - 'title': 'youtubedl test video _BaW_jenozKc.mp4', + 'title': 'youtubedl test video BaWjenozKc', 'description': 'Description', }, - 'skip': 'Video 0mw0yow7b6dxa does not exist', }