diff --git a/youtube_dl/extractor/novamov.py b/youtube_dl/extractor/novamov.py
index 82b639a7e..7a2c674d0 100644
--- a/youtube_dl/extractor/novamov.py
+++ b/youtube_dl/extractor/novamov.py
@@ -31,16 +31,42 @@ class NovaMovIE(InfoExtractor):
_FILE_DELETED_REGEX = r'This file no longer exists on our servers!'
_STEPKEY_REGEX = r''
- _URL_REGEX = r'
'
_TESTS = [{
@@ -112,7 +147,6 @@ class WholeCloudIE(NovaMovIE):
'id': 'e1de95371c94a',
'ext': 'mp4',
'title': 'Big Buck Bunny UHD 4K 60fps',
- 'description': 'No description',
},
'md5': '909304eb0b75ef231ceb72d84fade33d',
}, {
@@ -130,7 +164,6 @@ class NowVideoIE(NovaMovIE):
_HOST = 'www.nowvideo.to'
_FILE_DELETED_REGEX = r'>This file no longer exists on our servers.<'
- _TITLE_REGEX = r'([^<]+)
'
_DESCRIPTION_REGEX = r'\s*([^<]+)
'
_TESTS = [{
@@ -139,7 +172,6 @@ class NowVideoIE(NovaMovIE):
'id': '461ebb17e1a83',
'ext': 'mp4',
'title': 'Big Buck Bunny UHD 4K 60fps',
- 'description': 'No description',
},
'md5': '909304eb0b75ef231ceb72d84fade33d',
}, {
@@ -158,9 +190,15 @@ class BitVidIE(NovaMovIE):
_HOST = 'www.bitvid.sx'
_FILE_DELETED_REGEX = r'>This file no longer exists on our servers.<'
- _TITLE_REGEX = r'([^<]+)
'
+ _TITLE_REGEX = r''
_URL_TEMPLATE = 'http://%s/file/%s'
+ def _check_existence(self, webpage, video_id):
+ if ' ' in webpage:
+ raise ExtractorError('Video %s does not exist' % video_id, expected=True)
+
+ super(BitVidIE, self)._check_existence(webpage, video_id)
+
_TESTS = [{
'url': 'http://www.bitvid.sx/file/bceedaa7b969c',
'info_dict': {
@@ -185,7 +223,24 @@ class CloudTimeIE(NovaMovIE):
_FILE_DELETED_REGEX = r'>This file no longer exists on our servers.<'
- _TEST = None
+ def _check_existence(self, webpage, video_id):
+ if 'CloudTime - The stage is yours!' in webpage:
+ raise ExtractorError('Video %s does not exist' % video_id, expected=True)
+
+ super(CloudTimeIE, self)._check_existence(webpage, video_id)
+
+ _TESTS = [{
+ 'url': 'http://www.cloudtime.to/video/ef47760a7793d',
+ 'info_dict': {
+ 'id': 'ef47760a7793d',
+ 'ext': 'mp4',
+ 'title': 'Big Buck Bunny UHD 4K 60fps'
+ },
+ 'md5': '909304eb0b75ef231ceb72d84fade33d',
+ }, {
+ 'url': 'http://www.cloudtime.to/video/ef47760a7793d',
+ 'only_matching': True,
+ }]
class AuroraVidIE(NovaMovIE):
@@ -198,6 +253,12 @@ class AuroraVidIE(NovaMovIE):
_FILE_DELETED_REGEX = r'This file no longer exists on our servers!<'
+ def _check_existence(self, webpage, video_id):
+ if 'AuroaVid - Free and reliable flash video hosting' in webpage:
+ raise ExtractorError('Video %s does not exist' % video_id, expected=True)
+
+ super(AuroraVidIE, self)._check_existence(webpage, video_id)
+
_TESTS = [{
'url': 'http://www.auroravid.to/video/27851f1e57c95',
'info_dict': {