1

使用 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使用率有关。但它也发生在功能强大的计算机上。是否有任何最佳做法或解决方法?

4

1 回答 1

0

向下调整速率,直到噼啪声消失。

于 2013-08-07T23:08:28.143 回答