Difference between revisions of "SAPI"

From Free Pascal wiki
Jump to navigationJump to search
(link to new osx page)
Line 41: Line 41:
 
== OSX alternatives ==
 
== OSX alternatives ==
 
OSX has a system wide text to speech functionality built in:  
 
OSX has a system wide text to speech functionality built in:  
see [OS X Text to speech] for using text to speech directly (no screenreading)
+
see [[OS X Text to speech]] for using text to speech directly (no screenreading)
  
 
There's also a screenreader, VoiceOver. See [[LCL_Accessibility#Mac OS X VoiceOver]]
 
There's also a screenreader, VoiceOver. See [[LCL_Accessibility#Mac OS X VoiceOver]]
 
  
 
== See also ==
 
== See also ==

Revision as of 14:01, 13 March 2014

What is it

SAPI stands for Speech Application Programming Interface, a Microsoft Windows API used to perform text-to-speech (TTS).

Use with Free Pascal

Lazarus / Free Pascal can use this interface to perform TTS. Source: forum post: [1]

On Windows Vista and above, you will run in trouble with the FPU interrupt mask (see [2]). The code dealing with SavedCW is meant to work around this.

uses
  ...,comobj;
var
  SavedCW: Word;
  SpVoice: Variant;
begin
  SpVoice := CreateOleObject('SAPI.SpVoice');
  // Change FPU interrupt mask to avoid SIGFPE exceptions
  SavedCW := Get8087CW;
  try
    Set8087CW(SavedCW or $4);
    SpVoice.Speak('hi', 0);
  finally
    // Restore FPU mask
    Set8087CW(SavedCW);
  end;

For the options available with SpVoice.Speak and other SpVoice methods see http://msdn.microsoft.com/en-us/library/ms723609(v=vs.85).aspx.

Warning-icon.png

Warning: The OLE object created in above snippet will be destroyed automatically when the SpVoice variant goes out of scope. For larger texts the use of the asynchronous mode allows to keep your application reactive while speak is running. In that case it is especially important to control carefully the lifetime of the object and store it in a global or class variable. Destroying the object while speak is still running can cause crashes.

Changing the FPU interrupt mask can be done at any moment before loading the ole object and if your application is not using any floating point arithmetic there is no need to reset the FPU interrupt mask to its original value.

Windows, Linux, OSX alternatives

An alternative on Windows is to use espeak. eSpeak has 11 voices, (7 male and 4 female) and is cross platform supporting Windows, Mac and Linux. It also has many command line parameters which can be used to further improve the speech. When coding, an eSpeak installation can be used and a stand-alone option is available as well.

For a code example, please see the espeak article.

Linux/Unix alternatives

Apart from espeak, on Linux/Unix, there are some other command line Text To Speech engines, that may also offer access via APIs. An example is the festival engine.

See Linux Programming Tips#Perform text-to-speech .28TTS.29 or how to let my computer speak

OSX alternatives

OSX has a system wide text to speech functionality built in: see OS X Text to speech for using text to speech directly (no screenreading)

There's also a screenreader, VoiceOver. See LCL_Accessibility#Mac OS X VoiceOver

See also

  • espeak - Cross platform free Text to Speech engine