2013-08-07 68 views
1

使用Microsoft SpeechSynthesizer声音有时裂纹,是fuzy ...微软SpeechSynthesizer(TTS),语音裂纹

// 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的使用率。但它也发生在强大的计算机上。有没有最佳实践或workaroud?

+0

您使用哪种语音? –

+0

我正在测试可从网上随处可见的Scansoft的Virginie(FR)16Khz –

+0

这可能与语音本身有关。这是否以不同的声音重现? –

回答

0

向下调整rate,直到crack啪声消失。

+0

它似乎有帮助,它也是cpu相关 –