We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello @Snirpo,
Thanks for the awesome work on the VAD project, I am trying to access the VOICE event in the createStream.
The following code works, but I want to send the buffer to the transcriber only when there is a speech not on Silence.
vadStreamPipe.on("data", (buffer) => { transcriber.sendAudio(buffer.audioData); });
I want to send audio only when VOICE is there.
vadStreamPipe.on('VOICE',(buffer)=>{ transcriber.sendAudio(buffer.audioData); });
Something like the above should work. I have tried it but not working.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello @Snirpo,
Thanks for the awesome work on the VAD project, I am trying to access the VOICE event in the createStream.
The following code works, but I want to send the buffer to the transcriber only when there is a speech not on Silence.
I want to send audio only when VOICE is there.
Something like the above should work. I have tried it but not working.
The text was updated successfully, but these errors were encountered: