diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-06 09:29:41 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-06 09:29:41 +0600 |
commit | 33d152b6cc04bfdf658691dbf12c1d976cfa0ba3 (patch) | |
tree | 4e62d628d7c79066dcadcebd062ad6a81fea2899 /youtube_dl/extractor/nowvideo.py | |
parent | 51c4fec0d58af709a06bd75338b23eace412362f (diff) |
[novamov] Move all novamov based extractors to a single place
For easier navigation
Diffstat (limited to 'youtube_dl/extractor/nowvideo.py')
-rw-r--r-- | youtube_dl/extractor/nowvideo.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/youtube_dl/extractor/nowvideo.py b/youtube_dl/extractor/nowvideo.py deleted file mode 100644 index 57ee3d366..000000000 --- a/youtube_dl/extractor/nowvideo.py +++ /dev/null @@ -1,28 +0,0 @@ -from __future__ import unicode_literals - -from .novamov import NovaMovIE - - -class NowVideoIE(NovaMovIE): - IE_NAME = 'nowvideo' - IE_DESC = 'NowVideo' - - _VALID_URL = NovaMovIE._VALID_URL_TEMPLATE % {'host': 'nowvideo\.(?:to|ch|ec|sx|eu|at|ag|co|li)'} - - _HOST = 'www.nowvideo.to' - - _FILE_DELETED_REGEX = r'>This file no longer exists on our servers.<' - _FILEKEY_REGEX = r'var fkzd="([^"]+)";' - _TITLE_REGEX = r'<h4>([^<]+)</h4>' - _DESCRIPTION_REGEX = r'</h4>\s*<p>([^<]+)</p>' - - _TEST = { - 'url': 'http://www.nowvideo.ch/video/0mw0yow7b6dxa', - 'md5': 'f8fbbc8add72bd95b7850c6a02fc8817', - 'info_dict': { - 'id': '0mw0yow7b6dxa', - 'ext': 'flv', - 'title': 'youtubedl test video _BaW_jenozKc.mp4', - 'description': 'Description', - } - } |