nyadla-sys / whisper.tflite

Optimized OpenAI's Whisper TFLite Port for Efficient Offline Inference on Edge Devices
MIT License
134 stars 29 forks source link

Why cpp #17

Open michoael opened 9 months ago

michoael commented 9 months ago

Any way to use it without cpp I want use java only

vilassn commented 9 months ago

@michoael we are working on adding vad support, realtime transcription and noise processing. Supporting these features in Java will add significant delay. So using native code to add these feature to avoid processing delay.

Still you can use java only code by initialising whisper engine instance with Java engine instead of Native engine in Whisper.java

michoael commented 9 months ago

Okay, thanks. Now i can use it to transcription in realTime when i speaking withOut end recorder? Now i can use it with long wav file?

vilassn commented 9 months ago

Yes. We will support realtime transcription and long wav file transcription. It is under implementation.

michoael commented 9 months ago

I hope do this very soon, thanks