vosk-api icon indicating copy to clipboard operation
vosk-api copied to clipboard

Offline speech recognition API for Android, iOS, Raspberry Pi and servers with Python, Java, C# and Node

Results 266 vosk-api issues
Sort by recently updated
recently updated
newest added

Code ```js var vosk = require('vosk') const fs = require("fs"); var mic = require("mic"); MODEL_PATH = "./vosk" SAMPLE_RATE = 16000 if (!fs.existsSync(MODEL_PATH)) { console.log("Please download the model from https://alphacephei.com/vosk/models and...

Hi, I cannot see `vosk-android` version `0.3.50` in maven repository: https://repo.maven.apache.org/maven2/com/alphacephei/vosk-android/ The latest one I see is `0.3.47`, even though `0.3.50` seems to be released already with this commit: a7bf6a51e299152a8fb496b928a21eb79a1d7bea...

When I try to use gpu for a model, I follow the steps of gpuinit(), BatchModel and BatchRecognizer. But it says ,"failed to create model". How do I overcome this...

# # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007fbb068728e0, pid=30922, tid=30962 # # JRE version: Java(TM) SE Runtime Environment (17.0.11+7)...

Hi, I am currently working with vosk and mediasoup to create a live speech to text recognition. My web video conferencing app is working really well. For the speech recongnition,...

I am looking to use the native Android [NoiseSuppressor](https://developer.android.com/reference/android/media/audiofx/NoiseSuppressor) class which works by providing it with the Session ID from the native [AudioRecord](https://developer.android.com/reference/android/media/AudioRecord) object which SpeechService (Vosk Android Java class)...