I need a good and low prices TEXT to SPEECH activex/sdk
Posted: Thu Jun 06, 2013 4:06 am
I need a good and low prices TEXT to SPEECH activex/sdk that is very compatible and easy to use in Xbase++
Thanks.
Joe
Thanks.
Joe
Donnay Software Web Forums
http://bb.mobile.donnay-software.com/Donnay/
http://bb.mobile.donnay-software.com/Donnay/viewtopic.php?f=2&t=1054
why not use Windows "build-in" Speech ?unixkd wrote:I need a good and low prices TEXT to SPEECH activex/sdk that is very compatible and easy to use in Xbase++
Code: Select all
#include "activex.ch"
#pragma library( "ascom10.lib" )
PROCEDURE Main(cText )
LOCAL oApp
LOCAL oObj
LOCAL aVoice
LOCAL cSample := "This is the Voice from X base ++"
IF PCOUNT() = 0
cText := cSample
ENDIF
oApp := CreateObject( "SAPI.SpVoice" )
IF NIL == oApp
? "Fehler: ", ComLastError()
? "Beschreibung:"
? ComLastMessage()
RETURN
ENDIF
aVoice := oApp:invoke("GetVoices",0,DISPATCH_METHOD,"Name=Microsoft mary", "Language=407")
oApp:Speak( cText )
SLEEP(100)
oApp:destroy()
RETURN
you have to search for SAPI 5 "Steffi" which speak "German" ...hz_scotty wrote:But only German words are not well understood- there may be changes to the function call?
does not exits, i hear both - german and englishSAPI 5
hm ... that is WMI ...unixkd wrote:I would like to instantiate an object of Win32_LocalTime using the CreateObject().
@ MSDN http://msdn.microsoft.com/en-us/library ... 85%29.aspxunixkd wrote:Where can I get the interface name like "xxxxx.yyyy" ?