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 に答える