mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
17 lines
361 B
Python
17 lines
361 B
Python
import subprocess
|
|
from plyer.facades import TTS
|
|
from plyer.utils import whereis_exe
|
|
|
|
|
|
class EspeakTextToSpeech(TTS):
|
|
''' Speaks using the espeak program
|
|
'''
|
|
def _speak(self, **kwargs):
|
|
subprocess.call(["espeak", kwargs.get('message')])
|
|
|
|
|
|
def instance():
|
|
if whereis_exe('espeak.exe'):
|
|
return EspeakTextToSpeech()
|
|
return TTS()
|