vote up 2 vote down star
4

I am improving a small alarm/reminder application that I build years ago, and I would like to do an hourly beep, but instead of beeping it would be much nicer it would tell time. Is there any simple way to do this in DELPHI D2007 or later? Thanks

flag

50% accept rate

5 Answers

vote up 4 vote down check

Check Brian Long tutorial's Speech Synthesis & Speech Recognition Using SAPI 5.1

I wrote a text to speech software using this tutorial.

It reads the content of Clipboard when I press CTRL+10

link|flag
vote up 0 vote down

In my code I use MS Agent and TAgntSrvr component: http://delphi.icm.edu.pl/ftp/d30free/agntsrvr.htm

Also you can check this link or just Google around: "text speech delphi"

link|flag
vote up 0 vote down

Further to Jlouro's question, is there any nice text to speech that ends up giving actual British accent? It's quite easy to get the American default in Windows.... Bri

link|flag
vote up 4 vote down
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ComObj;

[...]

procedure TForm1.Button1Click(Sender: TObject);
var
  Voice: Variant;
begin
  Voice := CreateOLEObject('SAPI.SpVoice');
  Voice.speak('Hello World');
end;
link|flag
we use this method in the field, no issues, works with xp/vista – Christopher Chase Jan 20 at 22:29
I used the code above, it doesn't work in Vista. But with SpVoice component in Brian Long tutoriat it works nicely. – samir105 Jan 21 at 8:19
vote up 1 vote down

I did a video awhile back on making your applications talk in Delphi. I personally haven't ever found a use for text to speech in one of my applications, but it's a fun thing to know how to do ;-)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.