question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

AudioWorkletProcessor is missing required function

See original GitHub issue

See: https://developer.mozilla.org/en-US/docs/Web/API/AudioWorkletProcessor/process

The documentation notes:

Although the method is not a part of the AudioWorkletProcessor interface, any implementation of AudioWorkletProcessor must provide a process() method.

So to add this requirement I think it should be added to the interface. Like this:

type AudioWorkletProcessorParamMap = { [key: string]: Float32Array };

interface AudioWorkletProcessor {
    readonly port: MessagePort;
    process(inputs: Float32Array[][], outputs: Float32Array[][], parameters: AudioWorkletProcessorParamMap): boolean;
}

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
mathe42commented, Mar 23, 2022

Not sure should be decided by a maintainer.

@saschanaz ?

0reactions
github-actions[bot]commented, Mar 23, 2022

Closing because @saschanaz is one of the code-owners of this repository.

Read more comments on GitHub >

github_iconTop Results From Across the Web

AudioWorkletProcessor type definition is missing · Issue #28308
AudioWorkletProcessor is a type only for AudioWorklet . Do we want to add dom.audioworklet.d.ts for this, or do we have to add all...
Read more >
Web Audio API: outputChannelCount not working when I ...
When I do this, I don't get 2 output channels as I specified, instead I only get 1 output channel. class Processor extends...
Read more >
AudioWorkletProcessor() - Web APIs - MDN Web Docs
An object that is passed as options parameter to the AudioWorkletNode constructor and passed through the structured clone algorithm. Available ...
Read more >
Quick guide to AudioWorklet - DEV Community ‍ ‍
Processing the audio while recording in real-time. This article is a guide to how Ponder accomplishes these requirements using AudioWorklet.
Read more >
Audio and Music Analysis on the Web using Essentia.js. - Gale
This is not surprising considering that many ML audio models require a spectral ... essentia.js-plot provides helper functions for visualization of MIR ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found