Merge branch 'wordWrappingEndOfScreenBell' of github.com:chrys87/fenrir into wordWrappingEndOfScreenBell

This commit is contained in:
chrys 2016-12-14 23:06:20 +01:00
commit 38b8cd7979
3 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ driver=speechd
# The rate selects how fast fenrir will speak. Options range from 0, slowest, to 1.0, fastest.
rate=0.45
rate=0.6
# Pitch controls the pitch of the voice, select from 0, lowest, to 1.0, highest.
pitch=0.5

View File

@ -37,7 +37,7 @@ driver=speechd
# The rate selects how fast fenrir will speak. Options range from 0, slowest, to 1.0, fastest.
rate=0.45
rate=0.6
# Pitch controls the pitch of the voice, select from 0, lowest, to 1.0, highest.
pitch=0.5

View File

@ -25,10 +25,10 @@ class driver():
def shutdown(self):
pass
def speak(self,text, queueable=True):
def speak(self,text, interrupt=True):
if not self._isInitialized:
return False
if not queueable:
if not interrupt:
self.cancel()
self._es.synth(text)
return True
@ -62,7 +62,7 @@ class driver():
def setRate(self, rate):
if not self._isInitialized:
return False
return self._es.set_parameter(self._es.Parameter().Rate, int(rate*450 + 80))
return self._es.set_parameter(self._es.Parameter().Rate, int(rate * 500 + 100))
def setModule(self, module):
if not self._isInitialized: