You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi iam having the same issue, maybe somebody tried to fix that warning?
So i think the code that needs to be modified is in the index.js at 15859:
this.processor = this.context.createScriptProcessor(0, 1, 1);
// Add all buffers from LAME into an array.
this.processor.onaudioprocess = function (event) {
if (_this.timerToStart) {
return;
}
// Send microphone data to LAME for MP3 encoding while recording.
_this.lameEncoder.encode(event.inputBuffer.getChannelData(0));
};
Hello, nice work! 👍
[Deprecation] The ScriptProcessorNode is deprecated. Use AudioWorkletNode instead. (https://bit.ly/audio-worklet)
This message appears on Chrome dev console. Should I be worried? Thanks!
The text was updated successfully, but these errors were encountered: