tts icon indicating copy to clipboard operation
tts copied to clipboard

A simple python TTS wrapper

Results 3 tts issues
Sort by recently updated
recently updated
newest added

(I'm using this library for the first time (thanks!), so I may be doing something wrong.) All three sound files generated seem to have the same volume: ``` import tts.sapi...

import tts.sapi directory= 'D:\\Google Drive\\python\\' voice = tts.sapi.Sapi() voice.set_voice("IVONA 2 Joey") voice.create_recording(directory+'hello.wav', "Hello") I can write to this directory with other python scripts, but not sure why I can't do...

Using [`winsdk`](https://pypi.org/project/winsdk/) and [`Windows.Media.SpeechSynthesis`](https://learn.microsoft.com/en-us/uwp/api/windows.media.speechsynthesis.speechsynthesizer), it's posible to select more voices. In my system, this program only detects David and Zira, while the UWP API has Mark too.