Microsoft SpeechSynthesizerを使用すると、音声が時々パチパチ音をたてたり、ぼんやりしたりします...
// Initialize a new instance of the SpeechSynthesizer.
SpeechSynthesizer synth = new SpeechSynthesizer();
// Configure the audio output.
synth.SetOutputToDefaultAudioDevice();
// Speak a string.
synth.Speak("This example demonstrates a basic use of Speech Synthesizer");
CPU使用率に関係していると思います。しかし、それは強力なコンピューターでも起こりました。ベストプラクティスまたは回避策はありますか?