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
Hi! To obtain the same event.data.length in Android and iOS:
event.data.length
window.addEventListener('audioinput', (event: any) => { console.log("event.data.length",event.data.length) }
I have to set different bufferSize property in captureCfg. Example: to obtain event.data.length: 8192, I have to set:
captureCfg
event.data.length: 8192
bufferSize: 8192
bufferSize: 16384
Do you know this behaviour?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi!
To obtain the same
event.data.length
in Android and iOS:I have to set different bufferSize property in
captureCfg
.Example: to obtain
event.data.length: 8192
, I have to set:bufferSize: 8192
bufferSize: 16384
(8192 * 2)Do you know this behaviour?
The text was updated successfully, but these errors were encountered: