我试着安装Synaptic公司的节日,让它与Orca一起使用,但它没有出现在Orca的语音合成器列表中。
我安装了以下软件包:
发布于 2010-11-05 16:52:01
从表面上看,你应该有节日与虎鲸合作所需的应用程序。您是否已进入Orca首选项、语音选项卡并将“语音系统”更改为“GNOME语音服务”?在此之后,您可以将“语音合成器”改为节日。
发布于 2021-09-14 03:58:31
我也遇到了这个问题,但解决了它。就上下文而言,我使用的是Raspberry Pi 3型号B。
警告:如我建议的那样,注释行将使您的orca依赖于运行festival_server。你已经被警告过了。
在/etc/speech-dispatcher/speechd.conf中,不注释(删除行开头的哈希标记)
AddModule "festival" "sd_festival" "festival.conf"在一个终点站我跑了
festival_server最后在一个独立的终点站
orca的下一步
您可能希望在启动时通过扰乱您的festival_server来启动~/.xsession,因为使用AddModule行时,未注释的orca将不会在未运行festival_server的情况下启动。
我和你一样
因为这篇文章,我专门安装了后两者。不确定他们是否帮忙。
为了发现出了什么问题,我首先尝试了man speech-dispatcher,它将我引向info speech-dispatcher,从那里我了解了配置文件。在/etc/speech-dispatcher/speechd.conf中,我不评论这行
AddModule "festival" "sd_festival" "festival.conf"接下来,我尝试了orca和spd-say hello,并遇到了一个错误。
在深入阅读/etc/speech-dispatcher/modules/festival.conf之后,我发现您必须运行festival_server才能让spd-say或orca工作。这最终使事情有效,我能够从安装好的节日声音中选择“虎鲸设置”菜单中的声音,当我应用这些更改时,虎鲸会与节日对话。
发布于 2011-06-12 20:30:40
(试试我的剧本;)
#!/bin/bash
# Copyright Paolo Rotolo <paolorotolo@ubuntu-it.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
sudo apt-get install festival
sudo apt-get install festvox-italp16k
sudo apt-get install festvox-itapc16k
echo "(set! main-path "/usr/share/festival")
(set! load-path (cons main-path load-path))(set! load-path (cons main-path load-path))" >> .festivalvarsr
echo "(set! main-path "/usr/share/festival")(set! libdir main-path)(set! lexdir (path-append libdir "dicts"))(set! voice_default 'voice_lp_diphone)" >> .festivalrc
sudo apt-get install gnome-speech-swift
espeak -v it -s 150 "Complimenti. Avete installato Festival sul vostro pc. La voce che sentite non è di festival. Per attivarlo andate nelle preferenze di orca e alla voce, sistema di sintesi vocale, selezionate Servizi sintesi vocale di GNOME. Alla voce, Sintetizzatore di sintesi vocale, selezionate Festival GNOME Speech Driver. Alla voce impostazioni della voce, selezionate Predefinita. Infìne, alla voce, persona, selezionate pc_diphone, se volete la voce maschile, oppure lp_diphone, se volete la voce femminile.
Orca verrà avviato automaticamente."
orcahttps://askubuntu.com/questions/11448
复制相似问题