Replies: 2 comments
-
A fine alternative 🤔 it'd be great to see if there was a way to compare the results between the two. |
Beta Was this translation helpful? Give feedback.
-
All I can say is that the web speech seems pretty fast and accurate, much faster that the ML process. It seems to work only for the english language (even if change "lang=es") whilst OpenAI Whisper can deal automatically with several languages. Some explanations on how this works: this does not work offline. I found another answer here: |
Beta Was this translation helpful? Give feedback.
-
Instead of using the "Whisper" model to transcript an audio into a text, we can use the native Web Speech API.
This can save 1Gb.
You can try it with this script (source MDN)
and serve this "index.html" file:
This could be used (an improved version) via a
hook
and push the result to the server to compute an embedding.Beta Was this translation helpful? Give feedback.
All reactions