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

筅森魡賤 提交于 2019-12-09 06:33:50

问题


Can I add the dictionary of my own voice for text to speech application? If it possible which development language would be best to develop such a this kind of application There are several online tool for text to speech but they have there own voices. I have to develop same like that application.please suggest me how I can go ahead with my concept .


回答1:


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




回答2:


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


来源:https://stackoverflow.com/questions/45121645/can-i-add-my-own-voice-to-tts-and-can-generate-the-paragraph-with-my-own-voice

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