-
Notifications
You must be signed in to change notification settings - Fork 0
NoiseSuppressionFilter
Adnan Elezović edited this page Sep 30, 2024
·
2 revisions
implements
AudioFilter
Creates a new instance of NoiseSuppressionFilter
.
none
-
Promise<NoiseSuppressionFilter>
- A promise that resolves to a new instance ofNoiseSuppressionFilter
.
const noiseSuppressionFilter = await NoiseSuppressionFilter.create();
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.
none
-
Promise<void>
- A promise that resolves once all resources have been released.
const noiseSuppressionFilter = await NoiseSuppressionFilter.create();
await noiseSuppressionFilter.release();