Shivam Karn

Results 5 comments of Shivam Karn

I think I have solved this, may need more testing though (edit: tested multiple times, it works) after installing the module, go to node_modules/@react-native-voice/voice/ now look for the code below...

For me the app only crashed when I pressed stop or when I kept it listening for like around a minute or so Using Voice.cancel() instead of Voice.stop() seems to...

@ofirgeller hey can you go to this file: `node_modules/@react-native-voice/voice/android/src/main/java/com/wenkesj/voice/VoiceModule.java` and then go to line 352 which is this one: ``` for (String result : matches) { arr.pushString(result); } ``` and...

@ofirgeller You may use partial results, that produces the output but it gets cleared quickly. I found that whenever there is a gap, it ends listening and then starts listening...

In the VoiceModule.java: When user speaks, onBeginningOfSpeech gets called. When user stops speaking, onEndOfSpeech gets called and just after that onResults is called. When we set complete silence length, it...