-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
21 lines (18 loc) · 667 Bytes
/
main.py
File metadata and controls
21 lines (18 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
import sys
import time as t
def main():
# from src.utils import convert_path_to_wav
# # convert_path_to_wav("C:\\Users\\John\\Documents\\Sound recordings", 'w4a', 'data/Models/SpeechModel/Training/0/')
# from src.Controllers import AudioController
from src.ApplicationInterface.Application import VisualizerApp
VisualizerApp().run()
# from src.Gwen.gwen import Gwen
# aud_cntrl = AudioController.AudioController(None)
# while True:
# Gwen.Gwen().run_context()
# t.sleep(0.08) #
# print('KeyWord Detection:', aud_cntrl.get_prediction())
# t.sleep(0.2)
if __name__ == '__main__':
main()