1
0
Fork 0

maybe remedy an issue that crops up if you have a non-wav and non-json file in a results folder (assuming)

master
mrq 2023-03-09 04:06:07 +07:00
parent b64948d966
commit 797882336b
1 changed files with 3 additions and 3 deletions

@ -220,9 +220,9 @@ def generate(**kwargs):
if extension != ".json" and extension != ".wav":
continue
match = re.findall(rf"^{voice}_(\d+)(?:.+?)?{extension}$", filename)
key = int(match[0])
idx_cache[key] = True
if match and len(match) > 0:
key = int(match[0])
idx_cache[key] = True
if len(idx_cache) > 0:
keys = sorted(list(idx_cache.keys()))