Skip to content

Commit

Permalink
10/5
Browse files Browse the repository at this point in the history
  • Loading branch information
ofesquiro committed May 10, 2024
1 parent 06562d8 commit 9ce27ac
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 48 deletions.
1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 13 additions & 5 deletions notas/problemas-tareas-por-hacer.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
main.py es un archivo totalmente de prueba. se borrara en la brevedad
branch main:

- modificaciones hechas el 10 / 5
main.py fue borrado
logramos levantar el entorno de python correctamente. con esto los dockers quedan obsoletos.

los comandos que se requieran para el inicio del entorno de python se ponen estan en shellPyenvSetUp.csh y setUp.csh (en ese orden)que se corre una unica vez.
!! muchos de los comandos necesarios modifican carpetas fuera del entorno de python por lo que los permisos
de administrador son necesarios
los comandos para ejecutar los archivos de python estan en run.csh

dado a los cambios recientes sobre los entornos de python, DeviceInputInfoGatherer.py no es mas necesario y es borrado



supuestamente esta es la ruta donde los so de linux guardan la info de microfonos y otros
dispositivos de entrada /dev/snd/

para windows hay que hacer algo mas complejo para que los docker reconozcan los dispositivos
del hardware


File renamed without changes.
39 changes: 0 additions & 39 deletions src/DeviceInputInfoGatherer.py

This file was deleted.

8 changes: 4 additions & 4 deletions src/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def convert_voice_to_text(audio):
text = ""
print("Error; {0}".format(e))
return text
def isBul(text):
def isBool(text):
if text == "bool":
file = "livinLaVidaLoca.mp3"
file_path = "livinLaVidaLoca.mp3"
print(1)
play_music(file)
play_music(file_path)
def play_music(file):
pygame.init()
pygame.mixer.init()
Expand All @@ -37,7 +37,7 @@ def play_music(file):
def test():
audio = capture_voice_input()
text = convert_voice_to_text(audio)
isBul(text)
isBool(text)

def main():
test()
Expand Down

0 comments on commit 9ce27ac

Please sign in to comment.