-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSpeakPy.py
executable file
·56 lines (51 loc) · 1.59 KB
/
SpeakPy.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/python3
import subprocess, string, time, configparser
def escuchar():
#Grabar audio del microfono, convertirlo a FLAC
#y enviarlo a Google quien devolvera un JSON
envio = subprocess.Popen(["./STT.sh"], shell=True, universal_newlines=True, stdout=subprocess.PIPE)
texto = envio.communicate()[0]
texto = texto.strip('\n')
return texto
def decir(frase):
#Enviar texto a Google y reproducir el audio devuelto
url="http://translate.google.com.mx/translate_tts?tl=es&q=" + frase
reproduccion = subprocess.call(['mplayer', '-ao', 'alsa', '-noconsolecontrols', url], shell=False)
def buscar(texto):
existe = False
archivo = open("commands.txt")
linea = archivo.readline()
while linea != "":
if linea.find('!') >= 0:
linea = linea.strip('!')
linea = linea.rstrip('\n')
linea = linea.split('=')
if texto.find(linea[0]) >= 0:
existe = True
comando = linea[1]
comando.find('+')
comando = comando.split('+')
return comando
#proceso = subprocess.call(comando, shell=False)
linea = archivo.readline()
if not existe:
return 'no existe'
archivo.close()
while True:
clave = escuchar()
print('Escuche:' + clave)
if clave == 'Janis':
decir("Dime Ricardo")
orden = escuchar()
comando = buscar(orden)
if comando != 'no existe':
proceso = subprocess.Popen(comando, shell=False)
#time.sleep(3)
while proceso.poll() == None:
#print('-> ¿Cerrar?')
terminar = escuchar()
#print('Terminar:' + terminar)
if terminar == 'cerrar':
proceso.kill()
else:
decir('comando incorrecto')