Skip to content

NoiseSuppressionFilter

Adnan Elezović edited this page Sep 30, 2024 · 2 revisions

implements AudioFilter



create()

Description

Creates a new instance of NoiseSuppressionFilter.

Arguments

  • none

Returns

Example

const noiseSuppressionFilter = await NoiseSuppressionFilter.create();



release()

Description

Releases all internally allocated resources when the filter was created. Calling this method is optional, but will lead to better resource utilisation. Once this method has been called, the filter is no longer usable.

Arguments

  • none

Returns

  • Promise<void> - A promise that resolves once all resources have been released.

Example

const noiseSuppressionFilter = await NoiseSuppressionFilter.create();

await noiseSuppressionFilter.release();