diff --git a/demo.py b/demo.py index 7c98ff7..7efc448 100644 --- a/demo.py +++ b/demo.py @@ -1,50 +1,67 @@ import subprocess import soundfile -import sox - -## VOICES mimic3 -# -# /scratch/dkounadis/.envs/.tts/lib/python3.8/site-packages/mimic3_tts/ - -spk1 = 'en_US/vctk_low#p236' -rate1 = 1.24 - -spk2 = 'en_UK/apope_low' -rate2 = 1.64 - -pitch_semitones = -4 - -text = ('' -'' -f'' -f'' -'' -'A an exemplary voice.' -'' -'' -'' -'' -f'' -f'' -'' -'.Another pleasant voice.' -'' -'' -'' -'') - -with open('_tmp_ssml.txt', 'w') as f: - f.write(text) - -raw_tts = 'test.wav' -ps = subprocess.Popen(f'cat _tmp_ssml.txt | mimic3 --ssml > {raw_tts}', shell=True) -ps.wait() - -x, fs = soundfile.read(raw_tts) -tfm = sox.Transformer() -tfm.pitch(pitch_semitones) -x_shift = tfm.build_array( - input_array=x, - sample_rate_in=fs) - -soundfile.write(f'test_pitch.wav', x_shift, fs) +import msinference + + + +my_text = "Metamorphosis of cultural heritage to augmented hypermedia for accessibility and inclusion." +_voice = 'en_US/vctk_low#p276' # https://audeering.github.io/shift/ +affect = True # False = Non-Affective voices +out_wav = f'example_{affect=}.wav' + + +if affect: + + # Mimic-3 + + reference_wav = '_spk.wav' + rate = 4 # high speed sounds nice when used as speaker-reference audio for 2nd stage (StyleTTS2) + _ssml = ( + '' + f'' + f'' + f'' + f'Sweet dreams are made of this, ... !!! I travel the world and the seven seas.' + '' + '' + '') + _ssml += '' + with open('_tmp_ssml.txt', 'w') as f: + f.write(_ssml) + ps = subprocess.Popen(f'cat _tmp_ssml.txt | mimic3 --ssml > {reference_wav}', shell=True) + ps.wait() # using ps to call mimic3 because samples dont have time to be written in stdout buffer + + # StyleTTS2 + + x = msinference.inference(my_text, + msinference.compute_style(reference_wav), + alpha=0.3, + beta=0.7, + diffusion_steps=7, + embedding_scale=1) + soundfile.write(out_wav, x, 24000) + + + +else: + + + + # Non Affective TTS + + rate = .84 + _ssml = ( + '' + f'' + f'' + f'' + f'\'{my_text}\'' + '' + '' + '') + _ssml += '' + with open('_tmp_ssml.txt', 'w') as f: + f.write(_ssml) + ps = subprocess.Popen(f'cat _tmp_ssml.txt | mimic3 --ssml > {out_wav}', shell=True) + ps.wait() + diff --git a/generate_config.py b/generate_config.py index 69afd47..712080c 100644 --- a/generate_config.py +++ b/generate_config.py @@ -679,7 +679,7 @@ def emotion_predictor( # == markdown table -y = sorted(y, key=lambda d: d['emotion'][0]) # sort wav_files by valence +y = sorted(y, key=lambda d: d['emotion'][1]) # sort wav_files by valence # SORTING OUTPUT IS LIST - 0-th ELEMENT = LOWEST VALENCE #_________________________________________________ @@ -709,16 +709,17 @@ def emotion_predictor( table = ( f'\n\n

Available TTS Voices.

' - f'\nYou can use the basic/affective version of every voice in \n' - f'demo.py
' + f'\nIn \n' + f'demo.py ' + f'you can use the Affective or Non-Affective version of each voice.
' f'' - f'' + f'' f'' f'' ) -for i, tup in enumerate(reversed(y)): # i is new index +for i, tup in enumerate(y): _voice, emotion, tgt_wav, affect_wav, fig_file, str_voice = tup.values() print('\n\n', _voice, '\n\n') diff --git a/index.html b/index.html index 669fe3f..3d0cccf 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,14 @@

Available TTS Voices.

-You can use the basic/affective version of every voice in -demo.py
' # count f'\n\n voice \n\n\n\n Basic \n\n\n\n Non-Affective \n\n\n\n emotion volatility \n\n\n\n Affective \n\n
+In +demo.py you can use the Affective or Non-Affective version of each voice.
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
voice - Basic + Non-Affective @@ -25,18 +25,18 @@

Available TTS Voices.

-en_US/hifi-tts_low#6097 +en_US/vctk_low#p313 - + - sounds + sounds -
1 @@ -44,18 +44,18 @@

Available TTS Voices.

-en_UK/apope_low +en_US/cmu-arctic_low#eey - + - sounds + sounds -
2 @@ -63,18 +63,18 @@

Available TTS Voices.

-en_US/vctk_low#p311 +en_US/vctk_low#p329 - + - sounds + sounds -
3 @@ -82,18 +82,18 @@

Available TTS Voices.

-en_US/vctk_low#p304 +en_US/vctk_low#p351 - + - sounds + sounds -
4 @@ -101,18 +101,18 @@

Available TTS Voices.

-en_US/vctk_low#p254 +en_US/vctk_low#p229 - + - sounds + sounds -
5 @@ -120,18 +120,18 @@

Available TTS Voices.

-en_US/vctk_low#p275 +en_US/cmu-arctic_low#slt - + - sounds + sounds -
6 @@ -139,18 +139,18 @@

Available TTS Voices.

-en_US/vctk_low#p284 +en_US/vctk_low#p312 - + - sounds + sounds -
7 @@ -158,18 +158,18 @@

Available TTS Voices.

-en_US/vctk_low#p274 +en_US/vctk_low#p303 - + - sounds + sounds -
8 @@ -177,18 +177,18 @@

Available TTS Voices.

-en_US/vctk_low#p287 +en_US/vctk_low#p305 - + - sounds + sounds -
9 @@ -196,18 +196,18 @@

Available TTS Voices.

-en_US/vctk_low#p255 +en_US/cmu-arctic_low#slp - + - sounds + sounds -
10 @@ -215,18 +215,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#fem +en_US/m-ailabs_low#mary_ann - + - sounds + sounds -
11 @@ -234,18 +234,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#rxr +en_US/vctk_low#p264 - + - sounds + sounds -
12 @@ -253,18 +253,18 @@

Available TTS Voices.

-en_US/vctk_low#p316 +en_US/cmu-arctic_low#ljm - + - sounds + sounds -
13 @@ -272,18 +272,18 @@

Available TTS Voices.

-en_US/m-ailabs_low#elliot_miller +en_US/vctk_low#p314 - + - sounds + sounds -
14 @@ -291,18 +291,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#ahw +en_US/vctk_low#p306 - + - sounds + sounds -
15 @@ -310,18 +310,18 @@

Available TTS Voices.

-en_US/vctk_low#p279 +en_US/vctk_low#p236 - + - sounds + sounds -
16 @@ -329,18 +329,18 @@

Available TTS Voices.

-en_US/vctk_low#p258 +en_US/vctk_low#p230 - + - sounds + sounds -
17 @@ -348,18 +348,18 @@

Available TTS Voices.

-en_US/vctk_low#p292 +en_US/vctk_low#p336 - + - sounds + sounds -
18 @@ -367,18 +367,18 @@

Available TTS Voices.

-en_US/vctk_low#p278 +en_US/vctk_low#p340 - + - sounds + sounds -
19 @@ -386,18 +386,18 @@

Available TTS Voices.

-en_US/vctk_low#p237 +en_US/vctk_low#p317 - + - sounds + sounds -
20 @@ -405,18 +405,18 @@

Available TTS Voices.

-en_US/vctk_low#p227 +en_US/cmu-arctic_low#clb - + - sounds + sounds -
21 @@ -424,18 +424,18 @@

Available TTS Voices.

-en_US/vctk_low#p298 +en_US/vctk_low#p233 - + - sounds + sounds -
22 @@ -443,18 +443,18 @@

Available TTS Voices.

-en_US/vctk_low#p285 +en_US/vctk_low#p293 - + - sounds + sounds -
23 @@ -462,18 +462,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#awbrms +en_US/vctk_low#p339 - + - sounds + sounds -
24 @@ -481,18 +481,18 @@

Available TTS Voices.

-en_US/vctk_low#p232 +en_US/vctk_low#p307 - + - sounds + sounds -
25 @@ -500,18 +500,18 @@

Available TTS Voices.

-en_US/vctk_low#p345 +en_US/vctk_low#p268 - + - sounds + sounds -
26 @@ -519,18 +519,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#jmk +en_US/cmu-arctic_low#axb - + - sounds + sounds -
27 @@ -538,18 +538,18 @@

Available TTS Voices.

-en_US/vctk_low#p251 +en_US/vctk_low#p267 - + - sounds + sounds -
28 @@ -557,18 +557,18 @@

Available TTS Voices.

-en_US/vctk_low#p259 +en_US/vctk_low#p330 - + - sounds + sounds -
29 @@ -576,18 +576,18 @@

Available TTS Voices.

-en_US/vctk_low#p360 +en_US/vctk_low#p269 - + - sounds + sounds -
30 @@ -595,18 +595,18 @@

Available TTS Voices.

-en_US/vctk_low#p302 +en_US/vctk_low#p262 - + - sounds + sounds -
31 @@ -614,18 +614,18 @@

Available TTS Voices.

-en_US/vctk_low#p271 +en_US/vctk_low#p240 - + - sounds + sounds -
32 @@ -633,18 +633,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#ksp +en_US/vctk_low#p323 - + - sounds + sounds -
33 @@ -652,18 +652,18 @@

Available TTS Voices.

-en_US/vctk_low#p260 +en_US/vctk_low#p300 - + - sounds + sounds -
34 @@ -671,18 +671,18 @@

Available TTS Voices.

-en_US/vctk_low#p245 +en_US/vctk_low#p297 - + - sounds + sounds -
35 @@ -690,18 +690,18 @@

Available TTS Voices.

-en_US/vctk_low#p326 +en_US/vctk_low#p244 - + - sounds + sounds -
36 @@ -709,18 +709,18 @@

Available TTS Voices.

-en_US/vctk_low#p248 +en_US/vctk_low#p333 - + - sounds + sounds -
37 @@ -728,18 +728,18 @@

Available TTS Voices.

-en_US/vctk_low#p246 +en_US/vctk_low#p228 - + - sounds + sounds -
38 @@ -747,18 +747,18 @@

Available TTS Voices.

-en_US/vctk_low#p281 +en_US/vctk_low#p276 - + - sounds + sounds -
39 @@ -766,18 +766,18 @@

Available TTS Voices.

-en_US/vctk_low#p347 +en_US/vctk_low#p282 - + - sounds + sounds -
40 @@ -785,18 +785,18 @@

Available TTS Voices.

-en_US/vctk_low#p226 +en_US/vctk_low#p295 - + - sounds + sounds -
41 @@ -804,18 +804,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#aup +en_US/vctk_low#p283 - + - sounds + sounds -
42 @@ -823,18 +823,18 @@

Available TTS Voices.

-en_US/vctk_low#p374 +en_US/vctk_low#p362 - + - sounds + sounds -
43 @@ -842,18 +842,18 @@

Available TTS Voices.

-en_US/vctk_low#p263 +en_US/vctk_low#p250 - + - sounds + sounds -
44 @@ -861,18 +861,18 @@

Available TTS Voices.

-en_US/vctk_low#p270 +en_US/vctk_low#p280 - + - sounds + sounds -
45 @@ -880,18 +880,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#gka +en_US/vctk_low#p310 - + - sounds + sounds -
46 @@ -899,18 +899,18 @@

Available TTS Voices.

-en_US/hifi-tts_low#9017 +en_US/vctk_low#p318 - + - sounds + sounds -
47 @@ -918,18 +918,18 @@

Available TTS Voices.

-en_US/vctk_low#p256 +en_US/vctk_low#p239 - + - sounds + sounds -
48 @@ -937,18 +937,18 @@

Available TTS Voices.

-en_US/vctk_low#p334 +en_US/vctk_low#p249 - + - sounds + sounds -
49 @@ -956,18 +956,18 @@

Available TTS Voices.

-en_US/m-ailabs_low#judy_bieber +en_US/vctk_low#p277 - + - sounds + sounds -
50 @@ -975,18 +975,18 @@

Available TTS Voices.

-en_US/vctk_low#p363 +en_US/vctk_low#p225 - + - sounds + sounds -
51 @@ -994,18 +994,18 @@

Available TTS Voices.

-en_US/vctk_low#p335 +en_US/vctk_low#p231 - + - sounds + sounds -
52 @@ -1013,18 +1013,18 @@

Available TTS Voices.

-en_US/vctk_low#p241 +en_US/vctk_low#p266 - + - sounds + sounds -
53 @@ -1032,18 +1032,18 @@

Available TTS Voices.

-en_US/vctk_low#p247 +en_US/vctk_low#p288 - + - sounds + sounds -
54 @@ -1051,18 +1051,18 @@

Available TTS Voices.

-en_US/vctk_low#p286 +en_US/vctk_low#p257 - + - sounds + sounds -
55 @@ -1070,18 +1070,18 @@

Available TTS Voices.

-en_US/ljspeech_low +en_US/vctk_low#p376 - + - sounds + sounds -
56 @@ -1089,18 +1089,18 @@

Available TTS Voices.

-en_US/vctk_low#p243 +en_US/vctk_low#p294 - + - sounds + sounds -
57 @@ -1108,18 +1108,18 @@

Available TTS Voices.

-en_US/vctk_low#p364 +en_US/vctk_low#p261 - + - sounds + sounds -
58 @@ -1127,18 +1127,18 @@

Available TTS Voices.

-en_US/vctk_low#s5 +en_US/vctk_low#p341 - + - sounds + sounds -
59 @@ -1146,18 +1146,18 @@

Available TTS Voices.

-en_US/vctk_low#p253 +en_US/vctk_low#p299 - + - sounds + sounds -
60 @@ -1165,18 +1165,18 @@

Available TTS Voices.

-en_US/hifi-tts_low#92 +en_US/cmu-arctic_low#bdl - + - sounds + sounds -
61 @@ -1184,18 +1184,18 @@

Available TTS Voices.

-en_US/vctk_low#p308 +en_US/vctk_low#p252 - + - sounds + sounds -
62 @@ -1203,18 +1203,18 @@

Available TTS Voices.

-en_US/vctk_low#p343 +en_US/cmu-arctic_low#lnh - + - sounds + sounds -
63 @@ -1222,18 +1222,18 @@

Available TTS Voices.

-en_US/vctk_low#p272 +en_US/vctk_low#p238 - + - sounds + sounds -
64 @@ -1241,18 +1241,18 @@

Available TTS Voices.

-en_US/vctk_low#p273 +en_US/vctk_low#p301 - + - sounds + sounds -
65 @@ -1260,18 +1260,18 @@

Available TTS Voices.

-en_US/vctk_low#p234 +en_US/vctk_low#p272 - + - sounds + sounds -
66 @@ -1279,18 +1279,18 @@

Available TTS Voices.

-en_US/vctk_low#p265 +en_US/vctk_low#p308 - + - sounds + sounds -
67 @@ -1298,18 +1298,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#aew +en_US/vctk_low#p234 - + - sounds + sounds -
68 @@ -1317,18 +1317,18 @@

Available TTS Voices.

-en_US/vctk_low#p252 +en_US/vctk_low#p361 - + - sounds + sounds -
69 @@ -1336,18 +1336,18 @@

Available TTS Voices.

-en_US/vctk_low#p301 +en_US/vctk_low#p273 - + - sounds + sounds -
70 @@ -1355,18 +1355,18 @@

Available TTS Voices.

-en_US/vctk_low#p361 +en_US/cmu-arctic_low#aew - + - sounds + sounds -
71 @@ -1374,18 +1374,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#bdl +en_US/vctk_low#p265 - + - sounds + sounds -
72 @@ -1393,18 +1393,18 @@

Available TTS Voices.

-en_US/vctk_low#p376 +en_US/vctk_low#p253 - + - sounds + sounds -
73 @@ -1412,18 +1412,18 @@

Available TTS Voices.

-en_US/vctk_low#p299 +en_US/hifi-tts_low#92 - + - sounds + sounds -
74 @@ -1431,18 +1431,18 @@

Available TTS Voices.

-en_US/vctk_low#p341 +en_US/vctk_low#p270 - + - sounds + sounds -
75 @@ -1450,18 +1450,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#lnh +en_US/vctk_low#p334 - + - sounds + sounds -
76 @@ -1469,18 +1469,18 @@

Available TTS Voices.

-en_US/vctk_low#p238 +en_US/vctk_low#s5 - + - sounds + sounds -
77 @@ -1488,18 +1488,18 @@

Available TTS Voices.

-en_US/vctk_low#p261 +en_US/m-ailabs_low#judy_bieber - + - sounds + sounds -
78 @@ -1507,18 +1507,18 @@

Available TTS Voices.

-en_US/vctk_low#p257 +en_US/vctk_low#p363 - + - sounds + sounds -
79 @@ -1526,18 +1526,18 @@

Available TTS Voices.

-en_US/vctk_low#p310 +en_US/vctk_low#p241 - + - sounds + sounds -
80 @@ -1545,18 +1545,18 @@

Available TTS Voices.

-en_US/vctk_low#p277 +en_US/vctk_low#p364 - + - sounds + sounds -
81 @@ -1564,18 +1564,18 @@

Available TTS Voices.

-en_US/vctk_low#p276 +en_US/vctk_low#p343 - + - sounds + sounds -
82 @@ -1583,18 +1583,18 @@

Available TTS Voices.

-en_US/vctk_low#p295 +en_US/ljspeech_low - + - sounds + sounds -
83 @@ -1602,18 +1602,18 @@

Available TTS Voices.

-en_US/vctk_low#p225 +en_US/vctk_low#p243 - + - sounds + sounds -
84 @@ -1621,18 +1621,18 @@

Available TTS Voices.

-en_US/vctk_low#p231 +en_US/vctk_low#p335 - + - sounds + sounds -
85 @@ -1640,18 +1640,18 @@

Available TTS Voices.

-en_US/vctk_low#p362 +en_US/vctk_low#p256 - + - sounds + sounds -
86 @@ -1659,18 +1659,18 @@

Available TTS Voices.

-en_US/vctk_low#p228 +en_US/vctk_low#p326 - + - sounds + sounds -
87 @@ -1678,18 +1678,18 @@

Available TTS Voices.

-en_US/vctk_low#p288 +en_US/vctk_low#p247 - + - sounds + sounds -
88 @@ -1697,18 +1697,18 @@

Available TTS Voices.

-en_US/vctk_low#p280 +en_US/vctk_low#p286 - + - sounds + sounds -
89 @@ -1716,18 +1716,18 @@

Available TTS Voices.

-en_US/vctk_low#p266 +en_US/vctk_low#p281 - + - sounds + sounds -
90 @@ -1735,18 +1735,18 @@

Available TTS Voices.

-en_US/vctk_low#p294 +en_US/cmu-arctic_low#gka - + - sounds + sounds -
91 @@ -1754,18 +1754,18 @@

Available TTS Voices.

-en_US/vctk_low#p250 +en_US/cmu-arctic_low#aup - + - sounds + sounds -
92 @@ -1773,18 +1773,18 @@

Available TTS Voices.

-en_US/vctk_low#p318 +en_US/vctk_low#p245 - + - sounds + sounds -
93 @@ -1792,18 +1792,18 @@

Available TTS Voices.

-en_US/vctk_low#p297 +en_US/vctk_low#p226 - + - sounds + sounds -
94 @@ -1811,18 +1811,18 @@

Available TTS Voices.

-en_US/vctk_low#p239 +en_US/hifi-tts_low#9017 - + - sounds + sounds -
95 @@ -1830,18 +1830,18 @@

Available TTS Voices.

-en_US/vctk_low#p283 +en_US/vctk_low#p374 - + - sounds + sounds -
96 @@ -1849,18 +1849,18 @@

Available TTS Voices.

-en_US/vctk_low#p249 +en_US/vctk_low#p248 - + - sounds + sounds -
97 @@ -1868,18 +1868,18 @@

Available TTS Voices.

-en_US/vctk_low#p282 +en_US/vctk_low#p246 - + - sounds + sounds -
98 @@ -1887,18 +1887,18 @@

Available TTS Voices.

-en_US/vctk_low#p240 +en_US/vctk_low#p263 - + - sounds + sounds -
99 @@ -1906,18 +1906,18 @@

Available TTS Voices.

-en_US/vctk_low#p244 +en_US/vctk_low#p237 - + - sounds + sounds -
100 @@ -1925,18 +1925,18 @@

Available TTS Voices.

-en_US/vctk_low#p333 +en_US/vctk_low#p302 - + - sounds + sounds -
101 @@ -1944,18 +1944,18 @@

Available TTS Voices.

-en_US/vctk_low#p300 +en_US/vctk_low#p347 - + - sounds + sounds -
102 @@ -1963,18 +1963,18 @@

Available TTS Voices.

-en_US/vctk_low#p268 +en_US/vctk_low#p271 - + - sounds + sounds -
103 @@ -1982,18 +1982,18 @@

Available TTS Voices.

-en_US/vctk_low#p330 +en_US/vctk_low#p360 - + - sounds + sounds -
104 @@ -2001,18 +2001,18 @@

Available TTS Voices.

-en_US/vctk_low#p323 +en_US/vctk_low#p285 - + - sounds + sounds -
105 @@ -2020,18 +2020,18 @@

Available TTS Voices.

-en_US/vctk_low#p317 +en_US/vctk_low#p232 - + - sounds + sounds -
106 @@ -2039,18 +2039,18 @@

Available TTS Voices.

-en_US/vctk_low#p262 +en_US/cmu-arctic_low#awbrms - + - sounds + sounds -
107 @@ -2058,18 +2058,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#axb +en_US/vctk_low#p345 - + - sounds + sounds -
108 @@ -2077,18 +2077,18 @@

Available TTS Voices.

-en_US/vctk_low#p340 +en_US/vctk_low#p260 - + - sounds + sounds -
109 @@ -2096,18 +2096,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#clb +en_US/cmu-arctic_low#ksp - + - sounds + sounds -
110 @@ -2115,18 +2115,18 @@

Available TTS Voices.

-en_US/vctk_low#p336 +en_US/cmu-arctic_low#jmk - + - sounds + sounds -
111 @@ -2134,18 +2134,18 @@

Available TTS Voices.

-en_US/vctk_low#p267 +en_US/vctk_low#p292 - + - sounds + sounds -
112 @@ -2153,18 +2153,18 @@

Available TTS Voices.

-en_US/vctk_low#p233 +en_US/vctk_low#p251 - + - sounds + sounds -
113 @@ -2172,18 +2172,18 @@

Available TTS Voices.

-en_US/vctk_low#p269 +en_US/vctk_low#p259 - + - sounds + sounds -
114 @@ -2191,18 +2191,18 @@

Available TTS Voices.

-en_US/vctk_low#p307 +en_US/vctk_low#p316 - + - sounds + sounds -
115 @@ -2210,18 +2210,18 @@

Available TTS Voices.

-en_US/vctk_low#p339 +en_US/vctk_low#p298 - + - sounds + sounds -
116 @@ -2229,18 +2229,18 @@

Available TTS Voices.

-en_US/vctk_low#p293 +en_US/vctk_low#p278 - + - sounds + sounds -
117 @@ -2248,18 +2248,18 @@

Available TTS Voices.

-en_US/m-ailabs_low#mary_ann +en_US/vctk_low#p279 - + - sounds + sounds -
118 @@ -2267,18 +2267,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#slp +en_US/cmu-arctic_low#ahw - + - sounds + sounds -
119 @@ -2286,18 +2286,18 @@

Available TTS Voices.

-en_US/vctk_low#p264 +en_US/cmu-arctic_low#fem - + - sounds + sounds -
120 @@ -2305,18 +2305,18 @@

Available TTS Voices.

-en_US/vctk_low#p303 +en_US/vctk_low#p258 - + - sounds + sounds -
121 @@ -2324,18 +2324,18 @@

Available TTS Voices.

-en_US/vctk_low#p236 +en_US/cmu-arctic_low#rxr - + - sounds + sounds -
122 @@ -2343,18 +2343,18 @@

Available TTS Voices.

-en_US/vctk_low#p230 +en_US/vctk_low#p274 - + - sounds + sounds -
123 @@ -2362,18 +2362,18 @@

Available TTS Voices.

-en_US/vctk_low#p306 +en_US/vctk_low#p227 - + - sounds + sounds -
124 @@ -2381,18 +2381,18 @@

Available TTS Voices.

-en_US/vctk_low#p314 +en_US/vctk_low#p287 - + - sounds + sounds -
125 @@ -2400,18 +2400,18 @@

Available TTS Voices.

-en_US/vctk_low#p305 +en_US/m-ailabs_low#elliot_miller - + - sounds + sounds -
126 @@ -2419,18 +2419,18 @@

Available TTS Voices.

-en_US/vctk_low#p351 +en_US/vctk_low#p255 - + - sounds + sounds -
127 @@ -2438,18 +2438,18 @@

Available TTS Voices.

-en_US/vctk_low#p312 +en_US/vctk_low#p284 - + - sounds + sounds -
128 @@ -2457,18 +2457,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#ljm +en_US/vctk_low#p254 - + - sounds + sounds -
129 @@ -2476,18 +2476,18 @@

Available TTS Voices.

-en_US/vctk_low#p229 +en_US/vctk_low#p311 - + - sounds + sounds -
130 @@ -2495,18 +2495,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#slt +en_UK/apope_low - + - sounds + sounds -
131 @@ -2514,18 +2514,18 @@

Available TTS Voices.

-en_US/vctk_low#p329 +en_US/vctk_low#p304 - + - sounds + sounds -
132 @@ -2533,18 +2533,18 @@

Available TTS Voices.

-en_US/cmu-arctic_low#eey +en_US/vctk_low#p275 - + - sounds + sounds -
133 @@ -2552,18 +2552,18 @@

Available TTS Voices.

-en_US/vctk_low#p313 +en_US/hifi-tts_low#6097 - + - sounds + sounds -
\ No newline at end of file