How to detect when SAPI TTS engine is busy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T08:28:03Z http://stackoverflow.com/feeds/question/676143 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/676143/how-to-detect-when-sapi-tts-engine-is-busy 0 How to detect when SAPI TTS engine is busy Matthew 2009-03-24T04:17:06Z 2009-10-23T15:41:39Z <p>The SAPI engine can only render TTS from one application at a time (I have run a test with two instances of the Windows SDK TTSApplication sample to verify this). I am writing an application in which I need to detect whether the TTS engine is currently speaking (i.e. under control of a separate application, not mine).</p> <p>Does anyone know please how can I programmatically (in C++) detect the SAPI TTS engine busy/ready state? I have tried using ISpVoice::GetStatus() but that only seems to work for any TTS activity in my own application.</p> <p>Thanks.</p> http://stackoverflow.com/questions/676143/how-to-detect-when-sapi-tts-engine-is-busy/1614289#1614289 0 Answer by Jiri for How to detect when SAPI TTS engine is busy Jiri 2009-10-23T15:41:39Z 2009-10-23T15:41:39Z <p>For example in SAPI4, IVTxtAttributes::IsSpeaking retrieve such status (if engine is currently playing samples to some audio device). </p> <p>Anyway IMO general SAPI engine is not limited to one application. I believe that this behaviour is 'your engine' specific.</p>