fenrir/src/speech/es.py
2016-07-05 10:43:28 +02:00

23 lines
375 B
Python

#!/usr/bin/python
# Espeak driver
class speech():
isInitialized = False
def __init__(self):
try:
pass
isInitialized = True
except:
initialized = False
def speak(text, queueable=True):
if queueable == False: self.stop()
def stop(self):
pass
def clear_buffer(self):
pass