Cygwin 的旁白
有谁知道是否有用于 cygwin 或 linux 的阅读器(文本到语音)工具?我知道 Microsoft 的旁白,它的部分工作原理是读出我在 cygwin 窗口(bash 命令行)中输入的内容,但它不会报告任何写入标准输出的内容。
有没有人知道的原生 Cygwin 工具?
Does anyone know if there is a reader (text-to-speech) tool for cygwin or linux? I know of Microsoft's narrator, which partially works by sounding out what I type in the cygwin window (bash command line) but it doesn't report anything written to stdout.
Is there a native Cygwin tool anyone knows of?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BRLTTY,可通过 Cygwin 的 setup.exe 获得,显然除了能够驱动盲文之外,还具有一些语音支持显示。不过我没有这方面的经验。
BRLTTY, which is available through Cygwin's setup.exe, apparently does have some speech support in addition to being able to drive Braille displays. I've got no experience with it though.
BRLTTY 似乎只是盲文显示器的一个界面 - 我无法让它“说话”。
相反,从此处底部获取节日二进制文件,将其放入 C:/festival 和 cygwin
<代码>回显“你好世界”| /cygdrive/c/festival/bin/festival.exe --tts
应该说你好,世界。然后我将其放入脚本 say.sh 中并调用
~/say.sh hi
实际上达到了您所期望的效果:)
BRLTTY seems to be just an interface for Braile displays - I couldn't make it "talk".
Instead get festival binary from bottom of here, put it in C:/festival, and in cygwin
echo "hello world" | /cygdrive/c/festival/bin/festival.exe --tts
should say hello world. Then I put it into a script say.sh and calling
~/say.sh hi
actually does what you'd expect :)