Feat: slice-and-transcribe

This commit is contained in:
litagin02
2023-12-27 16:16:22 +09:00
parent 0a9a652d3b
commit 5be778284b
22 changed files with 685 additions and 138 deletions

View File

@@ -65,7 +65,9 @@ if __name__ == "__main__":
twople = (spk_dir, filename, args)
tasks.append(twople)
for _ in tqdm(pool.imap_unordered(process, tasks), file=sys.stdout):
for _ in tqdm(
pool.imap_unordered(process, tasks), file=sys.stdout, total=len(tasks)
):
pass
pool.close()