Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ogone/src/ogone.dom.d.ts>IIRFilterNode

Advanced Web Composition for Future
Latest
interface IIRFilterNode
implements AudioNode
import { type IIRFilterNode } from "https://deno.land/x/ogone@revb3/src/ogone.dom.d.ts";

The IIRFilterNode export interface of the Web Audio API is a AudioNode processor which implements a general infinite impulse response (IIR)  filter; this export type of filter can be used to implement tone control devices and graphic equalizers as well. It lets the parameters of the filter response be specified, so that it can be tuned as needed.

Methods

getFrequencyResponse(
frequencyHz: Float32Array,
magResponse: Float32Array,
phaseResponse: Float32Array,
): void