.                                                                                                                                                                                                                                                              

Results 36 comments of .                                                                                                                                                                                                                                                              

Is this integrates into Vosk so I have to compile them together, or this is a separate component?

So the asr is gonna output 5000, and this is going to convert it to five thousands? I can compile and run just fine without it, i dont see why...

You're right, I try to make this as easy to use as possible, just some minimal setup and you can start recognizing. I agree that more features should be added,...

I didn't really measured it, ngl, so maybe I should remove that line. But, I moved hot computations to c++ like ```free```, mapping input data, I also use a simpler...

Well, the thing is kaldi just refuses to compile with simd off, so I have to turn it on. It may or may not do anything though.

Just curious, how do you use a speech recognition library with your libav project? Isn't that for audio formats?

I can make a sync version, I just don't know how it is possible. If you block the current thread to recognize, how do you stop it? Synchronous model and...

The recognizer, I can't see how it is synchronous? It can't be blocking the one thread that is controlling itself. Can I take a look at the issue? Maybe there...

I get it, but wouldn't that block itself from other actions? I can surely add acceptWaveformSync() that recognize (will block) on the same thread and return the result. Will that...