diff --git a/src/backends/winrt.rs b/src/backends/winrt.rs index d3a349a..70d765f 100644 --- a/src/backends/winrt.rs +++ b/src/backends/winrt.rs @@ -193,6 +193,7 @@ impl Backend for WinRt { self.synth.Options()?.SetSpeakingRate(self.rate.into())?; self.synth.Options()?.SetAudioPitch(self.pitch.into())?; self.synth.Options()?.SetAudioVolume(self.volume.into())?; + self.synth.SetVoice(&self.voice)?; let stream = self .synth .SynthesizeTextToStreamAsync(&text.into())?