0

I am creating a TTS system for a native language from which i would create a database of voice recordings from the native people.

I have no experience with Natural Language Processing, and so i would like to know if there are some current tools to achieve my aim?

I am not building from scratch with either laravel or python

Thanks in advance.

Michael Anaman
  • 199
  • 4
  • 15

1 Answers1

0

There is this python library to programming such systems: https://pythonprogramminglanguage.com/text-to-speech/

It is worth taking a look.

You can easily install the library on Linux doing this:

sudo pip install pyttsx

An example code bellow:

import pyttsx
engine = pyttsx.init()
engine.say('Good morning.')
engine.runAndWait()
Eduardo Soares
  • 992
  • 4
  • 14