Added base system for different speech providers.
This commit is contained in:
parent
6c367f78d1
commit
4bce821cbe
@ -13,13 +13,18 @@ import pyperclip
|
||||
import random
|
||||
import re
|
||||
import requests
|
||||
import speechd
|
||||
# Global variable for speech provider
|
||||
try:
|
||||
import speechd
|
||||
spd = speechd.Client()
|
||||
speechProvider = "speechd"
|
||||
except:
|
||||
pass
|
||||
import subprocess
|
||||
import time
|
||||
|
||||
localConfig = configparser.ConfigParser()
|
||||
globalConfig = configparser.ConfigParser()
|
||||
spd = speechd.Client()
|
||||
|
||||
def write_config(writeGlobal = False):
|
||||
if writeGlobal == False:
|
||||
@ -37,6 +42,7 @@ def read_config(section, value, readGlobal = False):
|
||||
return globalConfig.read(section, value)
|
||||
|
||||
def speak(text, interupt = True):
|
||||
if speechProvider == "speechd":
|
||||
if interupt == True: spd.cancel()
|
||||
spd.say(text)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user