愚蠢的想法:来自 PHP 服务器的 Mac 语音?

发布于 2024-12-06 12:45:00 字数 345 浏览 0 评论 0原文

我想合成 Mac OS X 语音,但我使用的是 PC。我可以在家里的 Macbook 上设置一个 PHP 服务器,让它为我合成文本,然后通过 Web 请求将其返回给我吗?

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

哪些 PHP 秘密代码可以解锁这种可能性? 我知道我可以使用 say -o "output.aiff" -f "input.txt" 在命令行上合成语音,但我需要有关结缔组织的帮助。

- 我不想链接到倒谱或 AT&T 的在线语音合成器,因为我想使用特殊的 Mac 语音合成语法。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人海汹涌 2024-12-13 12:45:00
<?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;
<?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;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文