diff options
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/hoster/NowVideoAt.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/module/plugins/hoster/NowVideoAt.py b/module/plugins/hoster/NowVideoAt.py index 9bfb085c7..7c104eb29 100644 --- a/module/plugins/hoster/NowVideoAt.py +++ b/module/plugins/hoster/NowVideoAt.py @@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class NowVideoAt(SimpleHoster): __name__ = "NowVideoAt" __type__ = "hoster" - __version__ = "0.02" + __version__ = "0.03" __pattern__ = r'http://(?:www\.)?nowvideo\.(at|ch|co|eu|sx)/(video|mobile/#/videos)/(?P<ID>\w+)' @@ -25,6 +25,11 @@ class NowVideoAt(SimpleHoster): LINK_PATTERN = r'<source src="(.+?)"' + def setup(self): + self.multiDL = True + self.resumeDownload = True + + def handleFree(self): self.html = self.load("http://www.nowvideo.at/mobile/video.php", get={'id': self.file_info['ID']}) |