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
To Reproduce Create examples/microphone2.html:
<html> <head> <script> var handleSuccess = function(stream) { var context = new AudioContext(); console.log('1'); var source = context.createMediaStreamSource(stream); console.log('2'); var processor = context.createScriptProcessor(1024, 1, 1); console.log('3'); source.connect(processor); console.log('4'); processor.connect(context.destination); console.log('5'); processor.onaudioprocess = function(e) { console.log('6'); // Do something with the data, i.e Convert this to WAV console.log(e.inputBuffer); console.log('7'); }; }; navigator.mediaDevices.getUserMedia({ audio: true, video: false }) .then(handleSuccess); </script> </head> <body> </body> </html>
then run it:
$ node . examples/microphone2.html 1 2 3 4 5 Segmentation fault: 11
Additional context Add any other context about the problem here.
System information:
OS: macOS Catalina
Exokit Version 0.0.525
Node version v11.13.0
Is your Exokit downloaded or built? built
Screenshots If applicable, add screenshots to help explain your problem.
The text was updated successfully, but these errors were encountered:
backtrace
Sorry, something went wrong.
No branches or pull requests
To Reproduce
Create examples/microphone2.html:
then run it:
Additional context
Add any other context about the problem here.
System information:
OS: macOS Catalina
Exokit Version 0.0.525
Node version v11.13.0
Is your Exokit downloaded or built?
built
Screenshots
If applicable, add screenshots to help explain your problem.
The text was updated successfully, but these errors were encountered: