DanielUsselmann
DanielUsselmann
Ok thanks. I will try to use your method. So your planning to add a parameter for "just recognizing" numbers ? Because currently I need to map it from text...
Okay understand. I am currently developing this "Converter" by myself, but of course not for every language..
I have the following react-app: main.jsx: `` recognizer.jsx: `useEffect(() => { if(ready){ onModelLoad(); // Invoke onModelLoad callback to notify the parent component } }, [ready]);` `useEffect(() => { const loadModel...
I mean the current code has the spinner circle until the user allows the mic to use, but it still takes some seconds until you can speak
Thanks! Do you know how to stop the recognizer from "recognizing"? In my opinion normally if a component is unmounted it shall stop right or do i have to do...
In my case I need the recognizer to be a `State` in React, so `let` is not an option. I can call some functions on my `const [recognizer, setRecognizer] =...