Open karan-aithal opened 1 month ago
buzvis-app/ ├── CMakeLists.txt ├── src/ │ ├── app/ │ │ ├── BuzvisApp.h │ │ ├── BuzvisApp.cpp │ ├── modules/ │ │ ├── SpeechRecognition.h # Speech Recognition logic using Coqui STT │ │ ├── SpeechRecognition.cpp │ │ ├── SpeechSynthesis.h # Text-to-Speech logic (Coqui TTS or espeak) │ │ ├── SpeechSynthesis.cpp │ └── ui/ ├── include/ └── resources/
Overview:
Coqui STT for Speech Recognition:
Coqui STT is an open-source speech recognition engine that can be run offline. We'll use it to capture speech from the microphone, convert it into text, and process the recognized commands.
Text-to-Speech (TTS):
Use Coqui TTS (or espeak for offline synthesis) to convert the text generated by Buzvis into spoken words.
Business Logic: