我可以将自己的声音添加到 TTS 中,并可以用自己的声音生成段落吗?

Can I add my own voice to TTS and can generate the paragraph with my own voice?

我可以为文字转语音应用程序添加自己的语音词典吗?如果可能,哪种开发语言最好开发这种应用程序 有几种在线文本转语音工具,但它们都有自己的声音。我必须像那样开发 application.please 建议我如何继续我的概念。

您可以为希望应用程序呈现为音频的每个单词录制您的声音。创建一个键值对对象,反映单词 (属性) 和值(data URL 或音频资源路径)。

const voices = { 
                        // or path to static file
                 hello: "data:audio/ogg,/* base64 string of your voice */" 
               }

_speak("hello") // output audio, that is, your voice

您可以使用 Festival or Openmary 等开源软件构建自己的声音。您需要精心准备约1小时的语音录音

还有一些商业服务可以让您构建自定义语音,例如Cereproc

2019 年更新:现在您可以使用现代神经网络工具包,请参阅 Nvidia Tactoron2 and Realtime Voice Cloning