Win32::SAPI4 - Perl interface to the Microsoft Speech API 4.0 |
Win32::SAPI4 - Perl interface to the Microsoft Speech API 4.0
use Win32::SAPI4; my $vt = Win32::SAPI4::VoiceText->new(); my $dss = Win32::SAPI4::DirectSpeechSynthesis->new(); my $dsr = Win32::SAPI4::DirectSpeechRecognition->new(); my $vtel = Win32::SAPI4::VoiceTelephony->new(); my $vd = Win32::SAPI4::VoiceDictation->new(); my $vc = Win32::SAPI4::VoiceCommand->new();
This module is a simple interface to the Microsoft Speech API 4.0. It just offers 6 constructors to the different parts of this API, along with a few utility methods for the VoiceText class. This documentation won't offer the complete documentation for it, just download the Microsoft Speech API 4.0 SDK and read the Visual Basic documentation. It's all there, except for the few convenience methods I added to Win32::SAPI::VoiceText.
The Microsoft Speech API 4.0. It can be downloaded for free from http://www.microsoft.com/speech (go to the 'old versions' and find the 4.0 version)
See the Microsoft Speech API 4.0 Visual Basic documentation for all methods, properties and events available, except the following:
The Microsoft SAPI 4.0 SDK is supported on news://microsoft.public.speech_tech.sdk You can email the author for support on this module.
Jouke Visser jouke@cpan.org http://jouke.pvoice.org
Copyright (c) 2003-2004 Jouke Visser. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
perl(1), Microsoft Speech API 4 documentation.
Win32::SAPI4 - Perl interface to the Microsoft Speech API 4.0 |