Archlinux安装文本语音合成(TTS)

安装 festival

yaourt -S festival festival-english festival-us

测试运行

echo "This is an example. Arch is the best." | festival --tts
  • 修复错误 Linux: can't open /dev/dsp

参考 这里 将以下内容添加到 ~/.festivalrc

(Parameter.set 'Audio_Method 'Audio_Command)
(Parameter.set 'Audio_Command "aplay -q -c 1 -t raw -f s16 -r $SR $FILE")

linux