How to detect when SAPI TTS engine is busy - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T08:28:03Zhttp://stackoverflow.com/feeds/question/676143http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/676143/how-to-detect-when-sapi-tts-engine-is-busy0How to detect when SAPI TTS engine is busyMatthew2009-03-24T04:17:06Z2009-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#16142890Answer by Jiri for How to detect when SAPI TTS engine is busyJiri2009-10-23T15:41:39Z2009-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>