In python, add a method to KaldiRecognizer that returns a normal result
Open
- Dominant language
- Jupyter Notebook
- Stars
- 15.1k
- Forks
- 1.8k
- PR merge metrics
- No merged PRs in 30d
Description
rec = vosk.KaldiRecognizer(model, args.samplerate)
while True:
data = q.get()
if rec.AcceptWaveform(data):
print(rec.Result())
rec.Result() - Return { "text" : "word" }
It would be most convenient to receive simply - word
For example rec.DefaultResult() - Return "word"
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.