2022-01-28 06:19:29 +00:00
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
|
|
|
|
import torch
|
|
|
|
import torch.nn.functional as F
|
|
|
|
import torchaudio
|
2022-02-04 05:18:21 +00:00
|
|
|
|
2022-04-11 01:29:42 +00:00
|
|
|
from api import TextToSpeech, load_conditioning
|
2022-04-01 17:55:07 +00:00
|
|
|
from utils.audio import load_audio
|
|
|
|
from utils.tokenizer import VoiceBpeTokenizer
|
2022-02-04 05:18:21 +00:00
|
|
|
|
2022-01-28 06:19:29 +00:00
|
|
|
if __name__ == '__main__':
|
2022-02-04 05:18:21 +00:00
|
|
|
# These are voices drawn randomly from the training set. You are free to substitute your own voices in, but testing
|
|
|
|
# has shown that the model does not generalize to new voices very well.
|
2022-01-28 06:19:29 +00:00
|
|
|
preselected_cond_voices = {
|
2022-02-04 05:18:21 +00:00
|
|
|
# Male voices
|
|
|
|
'dotrice': ['voices/dotrice/1.wav', 'voices/dotrice/2.wav'],
|
2022-03-11 06:21:16 +00:00
|
|
|
'harris': ['voices/harris/1.wav', 'voices/harris/2.wav'],
|
|
|
|
'lescault': ['voices/lescault/1.wav', 'voices/lescault/2.wav'],
|
|
|
|
'otto': ['voices/otto/1.wav', 'voices/otto/2.wav'],
|
2022-04-11 01:29:42 +00:00
|
|
|
'obama': ['voices/obama/1.wav', 'voices/obama/2.wav'],
|
2022-02-04 05:18:21 +00:00
|
|
|
# Female voices
|
2022-03-11 06:21:16 +00:00
|
|
|
'atkins': ['voices/atkins/1.wav', 'voices/atkins/2.wav'],
|
|
|
|
'grace': ['voices/grace/1.wav', 'voices/grace/2.wav'],
|
|
|
|
'kennard': ['voices/kennard/1.wav', 'voices/kennard/2.wav'],
|
|
|
|
'mol': ['voices/mol/1.wav', 'voices/mol/2.wav'],
|
2022-01-28 06:19:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
2022-04-15 14:26:11 +00:00
|
|
|
parser.add_argument('--text', type=str, help='Text to speak.', default="I am a language model that has learned to speak.")
|
|
|
|
parser.add_argument('--voice', type=str, help='Use a preset conditioning voice (defined above). Overrides cond_path.', default='obama,dotrice,harris,lescault,otto,atkins,grace,kennard,mol')
|
|
|
|
parser.add_argument('--num_samples', type=int, help='How many total outputs the autoregressive transformer should produce.', default=128)
|
|
|
|
parser.add_argument('--batch_size', type=int, help='How many samples to process at once in the autoregressive model.', default=16)
|
|
|
|
parser.add_argument('--num_diffusion_samples', type=int, help='Number of outputs that progress to the diffusion stage.', default=16)
|
|
|
|
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='results/')
|
2022-01-28 06:19:29 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
os.makedirs(args.output_path, exist_ok=True)
|
2022-04-01 17:55:07 +00:00
|
|
|
|
|
|
|
tts = TextToSpeech(autoregressive_batch_size=args.batch_size)
|
2022-01-28 06:19:29 +00:00
|
|
|
|
2022-02-04 05:18:21 +00:00
|
|
|
for voice in args.voice.split(','):
|
|
|
|
cond_paths = preselected_cond_voices[voice]
|
|
|
|
conds = []
|
|
|
|
for cond_path in cond_paths:
|
2022-04-01 17:55:07 +00:00
|
|
|
c = load_audio(cond_path, 22050)
|
2022-02-04 05:18:21 +00:00
|
|
|
conds.append(c)
|
2022-04-01 17:55:07 +00:00
|
|
|
gen = tts.tts(args.text, conds, num_autoregressive_samples=args.num_samples)
|
|
|
|
torchaudio.save(os.path.join(args.output_path, f'{voice}.wav'), gen.squeeze(0).cpu(), 24000)
|
2022-03-27 03:32:12 +00:00
|
|
|
|