How to convert text into audio file which can be played in browser via python/django views? How can I do text-to-speech conversion in python? I want to convert a string to a .wav file, that will be played in a browser via python/django views.
For example:
text = "how are you?"
convert text to audio file (text.wav)
open text.wav file & play in browser via django view.