Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to synthesize Mac OS X speech, but I'm using a PC. Can I set up a PHP server on my Macbook at home, and have it synthesize text for me, and return it to me through a web request?

Like http://mymacbook.com/speak.php?t=why+hello+there

What secret PHP codes will unlock this possibility? I know I can synthesize speech on the command line with say -o "output.aiff" -f "input.txt" but I need help with the connective tissue here.

And no - I do not want links to Cepstral or AT&T's online speech synthesizer, because I want to use special Mac speech synthesis syntax.

share|improve this question
3  
A really cool idea btw :) – mpartel Sep 27 '11 at 2:19
I think that is not a stupid idea – tttony Sep 27 '11 at 4:17
If and when you implement this... please share! – Shackrock Sep 27 '11 at 22:53
quick and dirty but it works :) baslerdesign.com/matt/say – Matt M. Sep 29 '11 at 8:28

1 Answer

up vote 13 down vote accepted
<?php
    file_put_contents('input.txt', $_GET['t']);
    exec('say -o output.aiff -f input.txt');
    header("Content-Type: audio/x-aiff");
    readfile("output.aiff");
    unlink("output.aiff");
    exit;
share|improve this answer
+1 I forgot about that last part. :) – fireeyedboy Sep 27 '11 at 2:19
5  
Caveat: multiple simultaneous requests can write to those files at once. At best this can have hilarious consequences, but if you don't care for that, use tempnam() or similar to generate unique temporary files for both input and output. – mpartel Sep 27 '11 at 2:24
Cool - uh oh, what about getting the text from a HTTP GET request? – Matt M. Sep 27 '11 at 2:33
Added. POST is equally easy. – mpartel Sep 27 '11 at 2:39
+1 that was simple and cool – marcioAlmada Sep 27 '11 at 20:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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