mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-22 13:53:11 +08:00
Fix video hash not being computed when using Napisy24 provider
This commit is contained in:
parent
11a70bef49
commit
6aa5b8c838
2 changed files with 7 additions and 3 deletions
|
@ -560,6 +560,10 @@ def scan_video(path, dont_use_actual_file=False, hints=None, providers=None, ski
|
||||||
except MemoryError:
|
except MemoryError:
|
||||||
logger.warning(u"Couldn't compute napiprojekt hash for %s", path)
|
logger.warning(u"Couldn't compute napiprojekt hash for %s", path)
|
||||||
|
|
||||||
|
if "napisy24" in providers:
|
||||||
|
# Napisy24 uses the same hash as opensubtitles
|
||||||
|
video.hashes['napisy24'] = hash_opensubtitles(path)
|
||||||
|
|
||||||
logger.debug('Computed hashes %r', video.hashes)
|
logger.debug('Computed hashes %r', video.hashes)
|
||||||
else:
|
else:
|
||||||
logger.warning('Size is lower than 10MB: hashes not computed')
|
logger.warning('Size is lower than 10MB: hashes not computed')
|
||||||
|
|
|
@ -33,7 +33,7 @@ class Napisy24Subtitle(Subtitle):
|
||||||
matches = set()
|
matches = set()
|
||||||
|
|
||||||
# hash
|
# hash
|
||||||
if 'opensubtitles' in video.hashes and video.hashes['opensubtitles'] == self.hash:
|
if 'napisy24' in video.hashes and video.hashes['napisy24'] == self.hash:
|
||||||
matches.add('hash')
|
matches.add('hash')
|
||||||
|
|
||||||
# imdb_id
|
# imdb_id
|
||||||
|
@ -46,7 +46,7 @@ class Napisy24Subtitle(Subtitle):
|
||||||
class Napisy24Provider(Provider):
|
class Napisy24Provider(Provider):
|
||||||
'''Napisy24 Provider.'''
|
'''Napisy24 Provider.'''
|
||||||
languages = {Language(l) for l in ['pol']}
|
languages = {Language(l) for l in ['pol']}
|
||||||
required_hash = 'opensubtitles'
|
required_hash = 'napisy24'
|
||||||
api_url = 'http://napisy24.pl/run/CheckSubAgent.php'
|
api_url = 'http://napisy24.pl/run/CheckSubAgent.php'
|
||||||
|
|
||||||
def __init__(self, username=None, password=None):
|
def __init__(self, username=None, password=None):
|
||||||
|
@ -116,7 +116,7 @@ class Napisy24Provider(Provider):
|
||||||
return subtitle
|
return subtitle
|
||||||
|
|
||||||
def list_subtitles(self, video, languages):
|
def list_subtitles(self, video, languages):
|
||||||
subtitles = [self.query(l, video.size, video.name, video.hashes['opensubtitles']) for l in languages]
|
subtitles = [self.query(l, video.size, video.name, video.hashes['napisy24']) for l in languages]
|
||||||
return [s for s in subtitles if s is not None]
|
return [s for s in subtitles if s is not None]
|
||||||
|
|
||||||
def download_subtitle(self, subtitle):
|
def download_subtitle(self, subtitle):
|
||||||
|
|
Loading…
Reference in a new issue