plyer icon indicating copy to clipboard operation
plyer copied to clipboard

Notimplemented Error with plyer text to speech

Open SivaramNalliboyana opened this issue 4 years ago • 2 comments

I am on windows and i have the plyer module installed

This is my code: from plyer import tts tts.speak(message='hello world')

I have a simple code, but why do I get a notimplementederror() with plyer. Am I doing something wrong

SivaramNalliboyana avatar Apr 27 '20 10:04 SivaramNalliboyana

According to these lines:

https://github.com/kivy/plyer/blob/11b6b4b1565b04a6c7919ca8b3ed0aed86784915/plyer/platforms/win/tts.py#L14-L15

You should have a espeak.exe file, otherwise it returns the NotImplementedError.

ghost avatar Jun 26 '20 07:06 ghost

For me I also had to add C:\Program Files (x86)\eSpeak\command_line to my path

EdwardCoventry avatar Jun 26 '20 10:06 EdwardCoventry