Skip to content

Commit 1e2a486

Browse files
authored
update 8
1 parent 06b8c93 commit 1e2a486

File tree

1 file changed

+4
-4
lines changed
  • articles/communication-services/tutorials/audio-quality-enhancements/includes

1 file changed

+4
-4
lines changed

articles/communication-services/tutorials/audio-quality-enhancements/includes/web.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Key traits for echo cancelation:
3838
> **Echo Cancelation** features are available in public preview SDK version [1.37.1](https://github.com/Azure/Communication/blob/master/releasenotes/acs-javascript-calling-library-release-notes.md#1371-beta1-2025-06-16). Also note that to use echo cancelation you must use public preview audio effects SDK version beta version [1.21.1-beta](https://www.npmjs.com/package/@azure/communication-calling-effects/v/1.2.1-beta.1) or later.
3939
4040
> [!NOTE]
41-
> - Browser support for utilizing audio effects is available only on Chrome and Edge desktop browsers.
41+
> - Utilizing audio effects is available only on Chrome and Edge desktop browsers.
4242
> - The audio effects library isn't a standalone module and can't function independently. To utilize its capabilities the effects package must be integrated with the Azure Communication Services Calling client library for WebJS.
4343
> - If you use the GA version of the Calling SDK, you must use the [GA version](https://www.npmjs.com/package/@azure/communication-calling-effects/v/latest) of the Calling audio effects package.
4444
@@ -63,7 +63,7 @@ For information on the interface that details audio effects properties and metho
6363
To use audio effects within the Azure Communication Services Calling SDK, you need the `LocalAudioStream` property that's currently in the call. You need access to the `AudioEffects` API of the `LocalAudioStream` property to start and stop audio effects.
6464

6565
### Enable Noise Suppression
66-
The following code snippet shows an example on how to enable **noise suppression** from within the Webjs environment.
66+
The following code snippet shows an example on how to enable **noise suppression** from within the WebJS environment.
6767
```js
6868
import * as AzureCommunicationCallingSDK from '@azure/communication-calling';
6969
import { DeepNoiseSuppressionEffect } from '@azure/communication-calling-effects';
@@ -91,7 +91,7 @@ audioEffectsFeatureApi.on('effectsError', (error: AudioEffectErrorPayload) => {
9191
});
9292
```
9393
### Enable Echo Cancellation
94-
The following code snippet shows an example on how to enable **echo cancellation** from within the Webjs environment.
94+
The following code snippet shows an example on how to enable **echo cancellation** from within the WebJS environment.
9595
```js
9696
import * as AzureCommunicationCallingSDK from '@azure/communication-calling';
9797
import { EchoCancellationEffect } from '@azure/communication-calling-effects';
@@ -151,7 +151,7 @@ await audioEffectsFeatureApi.startEffects({
151151
```
152152

153153
## Turn on noise suppression during an ongoing call
154-
You might start a call and not have noise suppression turned on. The end users room might get noisy so that they would need to turn on noise suppression. To turn on noise suppression, you can use the `audioEffectsFeatureApi.startEffects` API.
154+
You might start a call and not have noise suppression turned on. The end users room might get noisy so that they would need to turn on noise suppression. To turn on noise suppression, you can use the `audioEffectsFeatureApi.startEffects` interface.
155155

156156
```js
157157
// Create the noise suppression instance

0 commit comments

Comments
 (0)