Python Forum
How to make a Vocal synthesizer program on Python? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How to make a Vocal synthesizer program on Python? (/thread-32177.html)



How to make a Vocal synthesizer program on Python? - Seadust - Jan-26-2021

I'm making a Vocal Synthesizer Like "UTAU" or "VOICEROID". It would be a way to make your own text to speech using your own voice. But how would I even do something like that on Python? I am a complete beginner and I would obviously learn the code first. I would just want some advice how I would start this project. If you need me to explain more about it I would be more than happy to ! Thanks in advance!!


RE: How to make a Vocal synthesizer program on Python? - Larz60+ - Jan-26-2021

There are quite a few packages here: https://pypi.org/search/?q=vpice+%2B+Synthesizer
You'll have to look through and try a few to (possibly) find one that fits your needs.


RE: How to make a Vocal synthesizer program on Python? - nilamo - Jan-26-2021

Synthesizing voice from text can be done from various libraries.

But it sounds like you want to create a new voice, so the synthesized audio sounds like you, yourself, read the text. If that's the case, I think it'll be a lot more involved.

It looks like Descript does it: https://www.descript.com/overdub - but that's $24/month, with a 7 day free trial.

Amazon Polly can also do it, though you can't do it yourself, you need to reach out to their support team and they'll walk you through it (and, more importantly, there's no pricing listed on what that would cost) https://aws.amazon.com/polly/


RE: How to make a Vocal synthesizer program on Python? - gonnach - Jan-28-2021

https://medium.com/towards-artificial-intelligence/how-to-perform-speech-synthesis-in-python-7784a2f43f89.
check out this, for further details it has a detailed explanation