Hello im trying to change the default voice to aria, friendly, pitch -6%, rate +10%
This works for me
var replyText = $"hi";
var replySpeak = @"<speak version='1.0' xmlns='https://www.w3.org/2001/10/synthesis' xml:lang='de-DE'>
<voice name='Microsoft Server Speech Text to Speech Voice (en-US, Aria)'>" +
$"{replyText}" + "</voice></speak>";
await turnContext.SendActivityAsync(MessageFactory.Text(replyText, replySpeak), cancellationToken);
but when i add more customisations, it does not work anymore, instead it reads everything in replySpeak
var replyText = $"Echo: {turnContext.Activity.Text}";
var replySpeak = @"<speak version='1.0' xmlns='https://www.w3.org/2001/10/synthesis' xml:lang='de-DE'>
<voice name='Microsoft Server Speech Text to Speech Voice (de-DE, Stefan, Apollo)'><mstts:express-as
style="cheerful"><prosody rate="+10%", pitch="-6%">" +
$"{replyText}" + "</prosody></mstts:express-as></voice></speak>";
await turnContext.SendActivityAsync(MessageFactory.Text(replyText, replySpeak), cancellationToken);