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

删除回忆录丶 提交于 2019-12-03 09:07:37

You can build your voice with open source software like Festival or Openmary. You will need a carefully prepared recording of your voice for about 1 hour

There are also commercial services which allows you to build a custom voice, for example Cereproc

Update 2019: These days you can use modern neural network toolkits see Nvidia Tactoron2 and Realtime Voice Cloning

You can record your voice for each word that you want the application to render as audio. Create an object of key, value pairs reflecting the word (property) and value (data URL or path to audio resource).

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

_speak("hello") // output audio, that is, your voice
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!