move voices
Browse files
do_tts.py
CHANGED
@@ -10,7 +10,7 @@ if __name__ == '__main__':
|
|
10 |
parser = argparse.ArgumentParser()
|
11 |
parser.add_argument('--text', type=str, help='Text to speak.', default="I am a language model that has learned to speak.")
|
12 |
parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) '
|
13 |
-
'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='
|
14 |
parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard')
|
15 |
parser.add_argument('--voice_diversity_intelligibility_slider', type=float,
|
16 |
help='How to balance vocal diversity with the quality/intelligibility of the spoken text. 0 means highly diverse voice (not recommended), 1 means maximize intellibility',
|
|
|
10 |
parser = argparse.ArgumentParser()
|
11 |
parser.add_argument('--text', type=str, help='Text to speak.', default="I am a language model that has learned to speak.")
|
12 |
parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) '
|
13 |
+
'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='pat')
|
14 |
parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard')
|
15 |
parser.add_argument('--voice_diversity_intelligibility_slider', type=float,
|
16 |
help='How to balance vocal diversity with the quality/intelligibility of the spoken text. 0 means highly diverse voice (not recommended), 1 means maximize intellibility',
|
read.py
CHANGED
@@ -32,7 +32,7 @@ if __name__ == '__main__':
|
|
32 |
parser = argparse.ArgumentParser()
|
33 |
parser.add_argument('--textfile', type=str, help='A file containing the text to read.', default="data/riding_hood.txt")
|
34 |
parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) '
|
35 |
-
'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='
|
36 |
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='results/longform/')
|
37 |
parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard')
|
38 |
parser.add_argument('--regenerate', type=str, help='Comma-separated list of clip numbers to re-generate, or nothing.', default=None)
|
|
|
32 |
parser = argparse.ArgumentParser()
|
33 |
parser.add_argument('--textfile', type=str, help='A file containing the text to read.', default="data/riding_hood.txt")
|
34 |
parser.add_argument('--voice', type=str, help='Selects the voice to use for generation. See options in voices/ directory (and add your own!) '
|
35 |
+
'Use the & character to join two voices together. Use a comma to perform inference on multiple voices.', default='pat')
|
36 |
parser.add_argument('--output_path', type=str, help='Where to store outputs.', default='results/longform/')
|
37 |
parser.add_argument('--preset', type=str, help='Which voice preset to use.', default='standard')
|
38 |
parser.add_argument('--regenerate', type=str, help='Comma-separated list of clip numbers to re-generate, or nothing.', default=None)
|