Limiter node is used to convert high dynamic range audio into 16-bit audio for transmission over a WebRTC connection.
let listener = new HRTFOutput(audioContext);let limiter = new Limiter(audioContext);let destination = audioContext.createMediaStreamDestination();listener.connect(limiter).connect(destination);
The AudioContext to use. It should be created with a sample rate of 48000.
Readonly
Optional
Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
Limiter node is used to convert high dynamic range audio into 16-bit audio for transmission over a WebRTC connection.
Example