Hello, all.
Can I use CognitiveServices.SpeechSynthesizer for russian language?
I have Windows 10 rus, Visual Studio 2019 Community. I have got CognitiveServices.Speech packet via Nuget.
var speechConfig = SpeechConfig.FromSubscription("<...>", "northeurope");
SpeechSynthesizer synt = new SpeechSynthesizer(speechConfig);
synt.SpeakTextAsync(textBox1.Text);
When i put english text into textBox1, all works fine. But when i put there russian text - silence.
Thank you in advance.