aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/nowvideo.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-12-06 09:29:41 +0600
committerSergey M․ <dstftw@gmail.com>2015-12-06 09:29:41 +0600
commit33d152b6cc04bfdf658691dbf12c1d976cfa0ba3 (patch)
tree4e62d628d7c79066dcadcebd062ad6a81fea2899 /youtube_dl/extractor/nowvideo.py
parent51c4fec0d58af709a06bd75338b23eace412362f (diff)
downloadyoutube-dl-33d152b6cc04bfdf658691dbf12c1d976cfa0ba3.tar.xz
[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.py28
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',
- }
- }