https://github.com/selfint/voice_recognition
https://github.com/selfint/voice_recognition
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/selfint/voice_recognition
- Owner: selfint
- Created: 2021-08-31T12:08:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-04T11:03:41.000Z (almost 5 years ago)
- Last Synced: 2025-02-14T08:49:11.800Z (over 1 year ago)
- Language: Python
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# voice interface
## flow
1. sox generates files of a set duration (1 or 2 seconds)
2. using inotify, python receives the newest file
3. the deepspeech model is then run on the file, in a separate thread
4. the interpreted text from the audio file is pushed to a PriorityQueue
5. another python script reads from the PriorityQueue
The result is a queue the outputs the words the user is saying, in real
time