From 00cb19b6cf454a30666ec431ed2075abbbef73ea Mon Sep 17 00:00:00 2001 From: mrq Date: Fri, 17 Feb 2023 04:50:02 +0000 Subject: [PATCH] arg to skip voice latents for grabbing voice lists (for preparing datasets) --- tortoise/utils/audio.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tortoise/utils/audio.py b/tortoise/utils/audio.py index 6de0858..8a645df 100755 --- a/tortoise/utils/audio.py +++ b/tortoise/utils/audio.py @@ -77,7 +77,7 @@ def dynamic_range_decompression(x, C=1): return torch.exp(x) / C -def get_voices(extra_voice_dirs=[]): +def get_voices(extra_voice_dirs=[], load_latents=True): dirs = [get_voice_dir()] + extra_voice_dirs voices = {} for d in dirs: @@ -85,7 +85,9 @@ def get_voices(extra_voice_dirs=[]): for sub in subs: subj = os.path.join(d, sub) if os.path.isdir(subj): - voices[sub] = list(glob(f'{subj}/*.wav')) + list(glob(f'{subj}/*.mp3')) + list(glob(f'{subj}/*.pth')) + voices[sub] = list(glob(f'{subj}/*.wav')) + list(glob(f'{subj}/*.mp3')) + if load_latents: + voices[sub] = voices[sub] + list(glob(f'{subj}/*.pth')) return voices @@ -93,7 +95,7 @@ def load_voice(voice, extra_voice_dirs=[], load_latents=True, sample_rate=22050, if voice == 'random': return None, None - voices = get_voices(extra_voice_dirs) + voices = get_voices(extra_voice_dirs=extra_voice_dirs, load_latents=load_latents) paths = voices[voice] mtime = 0