vote up 0 vote down star

I am trying to make a PHP script talk to the user. Do I need flash?

flag
you might want to describe that further, John. eg. when and what it should tell/speak(?), what do you need it for, and so on. – andyk Nov 26 '08 at 6:44
Please elaborate it further.. What you have written does not give enough directions to think. – Mohit Nanda Nov 26 '08 at 7:28
If you are not kidding (which I find hard to believe, judging from your previous questions and answers in relation to this one), please provide more information, context and goals. – Aron Rotteveel Nov 26 '08 at 7:52

5 Answers

vote up 0 vote down

Your question is still not specific enough. Talking can have many possible contexts. Do you mean a program that will read aloud syntax errors? Do you mean a talking IDE? Or do you mean a program that will converse with a programmer, as in a Dialog System? The computational requirements for each of the three are vastly different, as is the level of their AI.

link|flag
vote up 0 vote down

If you want to avoid Flash, a cool but somewhat new plugin that has a service for local text to speech is Yahoo's BrowserPlus. The specific service you want to look at is the TextToSpeech service (http://browserplus.yahoo.com/developer/services/ , scroll down to TextToSpeech). To implement, it requires a javascript call and for your user to install the BrowserPlus plugin.

link|flag
vote up 4 vote down

On a windows server you can do:

 $voice = new COM("SAPI.SpVoice");
 $voice->Speak("Hello, lets have a conversation");

For linux you'll need php-vox installed. Check out a demo page of it working here.

link|flag
Wouldn't the COM version make the webserver speak, not the end user's pc? – Tom Haigh Nov 26 '08 at 9:29
vote up 0 vote down

Use JavaScript, yes. To compile the audio, use http://public.research.att.com/~ttsweb/tts/demo.php. If you wanted to be a real hacker, you can write a script that posts to that website and receives the response (which contains a link). Pass the URL of the audio file to the user through your JavaScript. Presto, text-to-speech.

link|flag
AHA! THank you this is good. However I do not want to be a hacker I have had run-ins with the law before and it never ends well :( – Kevin Dente Nov 26 '08 at 6:29
being a Hacker is not a bad thing, now being a cracker involves illegal activity, hackers are good people, at least we like to think we are. – Unkwntech Nov 26 '08 at 8:05
John: catb.org/jargon/html/H/hacker.html – Lars Mæhlum Nov 26 '08 at 8:05
vote up 1 vote down

I assume by talk, you mean play audio. You do not need flash, javascript can do this.

link|flag

Your Answer

Get an OpenID
or

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