Skip to content

Commit c88c400

Browse files
authored
Jessa renamed to Aria (#179)
1 parent 9aa760a commit c88c400

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

MRCP/sample-conf/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"tts_local_endpoint": "",
1111
"tts_local_key": "",
1212
"tts_locale": "",
13-
"tts_voice_name": "Microsoft Server Speech Text to Speech Voice (en-US, JessaNeural)",
13+
"tts_voice_name": "Microsoft Server Speech Text to Speech Voice (en-US, AriaNeural)",
1414
"tts_extra_enable_property": "",
1515
"tts_sample_rate": 8000
1616
}

Samples-Http/CSharp/TTSProgram.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ private static void Main(string[] args)
104104
// see full list here https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/language-support#neural-voices-preview
105105
SpeakWithVoice(tokenUri, endpointUri, key,
106106
"en-US",
107-
"en-US-Jessa24kRUS", // Short name for "Microsoft Server Speech Text to Speech Voice (en-US, Jessa24KRUS)"
107+
"en-US-Guy24kRUS", // Short name for "Microsoft Server Speech Text to Speech Voice (en-US, Guy24KRUS)"
108108
AudioOutputFormat.Riff24Khz16BitMonoPcm);
109109
}
110110

Samples-Http/Go/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ func main() {
107107
Transport: tr,
108108
}
109109

110-
GetAudioBytes(client, endpoint, token, "<speak version='1.0' xml:lang='en-us'><voice name='en-US-JessaNeural'>Hello world!</voice></speak>")
110+
GetAudioBytes(client, endpoint, token, "<speak version='1.0' xml:lang='en-us'><voice name='en-US-AriaNeural'>Hello world!</voice></speak>")
111111
}
112112
}

TranslatorDemo/Backend/TranslatorServer/Configuration.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class Configuration
2323
public const string TtsIbizaStsUrl = "";
2424
public const string TtsSubscriptionKey = "";
2525
public const string TtsEndpoint = "";
26-
public const string JessaRUSName = "";
26+
public const string AriaRUSName = "";
2727
public const string XiaoxiaoNeuralName = "";
2828
}
2929
}

TranslatorDemo/Backend/TranslatorServer/Management/TTS.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class TTS
1717
const string IbizaStsUrl = Configuration.TtsIbizaStsUrl;
1818
const string SubscriptionKey = Configuration.TtsSubscriptionKey;
1919
const string Endpoint = Configuration.TtsEndpoint;
20-
public string JessaRUSName = Configuration.JessaRUSName;
20+
public string AriaRUSName = Configuration.AriaRUSName;
2121
public string XiaoxiaoNeuralName = Configuration.XiaoxiaoNeuralName;
2222

2323
private Authentication cognitiveServiceAuthentication;
@@ -46,7 +46,7 @@ public Stream Synthesis(string script, string format, string locale)
4646
}
4747
else
4848
{
49-
return GetStream(Endpoint, token, locale, JessaRUSName, script, format, false);
49+
return GetStream(Endpoint, token, locale, AriaRUSName, script, format, false);
5050
}
5151
}
5252

0 commit comments

Comments
 (0)