Skip to content

Commit 5e48787

Browse files
authored
Update web.md
1 parent 42bc7bd commit 5e48787

File tree

1 file changed

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

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Enable audio noise suppression improvements
2+
title: Enable audio effects to improve audio quality
33
titleSuffix: An Azure Communication Services article
44
description: This article describes how to add audio effects in your calls using Azure Communication Services.
55
author: sloanster
@@ -20,7 +20,7 @@ Audio effects in ACS are real-time enhancements applied to microphone input duri
2020
**Noise suppression** (sometimes called noise reduction) focuses on eliminating unwanted background sounds. Think typing sounds, fan hums, distant conversations, or street noise. Its job is to isolate your voice so that whoever is listening hears you more clearly, and reduce or remove the distracting background sounds. It uses algorithms trained to recognize the difference between your speech and ambient noise, then reduces or removes that noise in real time. These noises can be considered a sound that isn't human voice.
2121
Key traits that noise suppression enables:
2222
- Removes continuous or predictable background noises.
23-
- Enhances speech clarity.
23+
- Enhance speech clarity.
2424
- Typically works on the speaker’s end before sending out the audio.
2525

2626
**Echo cancellation** removes echo caused when your microphone picks up audio from your speakers. For example, when someone is on speakerphone and their microphone picks up your voice from their speaker, it can loop back to you as an echo. Echo cancellation predicts and subtracts this returning sound so you don’t hear yourself talking back a fraction of a second later.
@@ -33,12 +33,13 @@ Key traits for echo cancelation:
3333

3434
> [!IMPORTANT]
3535
> **Noise Suppression** features are available in GA SDK version `1.28.4` or later, alongside the Azure Communication Services Calling Effects SDK version GA `1.1.2` or later. The general availability (GA) stable version `1.28.4` and later of the Calling SDK support noise suppression features. Alternatively, if you opt to use the public preview version, Calling SDK versions `1.24.2-beta.1` and later also support noise suppression.
36+
3637
> This tutorial employs the Azure Communication Services Calling SDK version `1.28.4` or later, alongside the Azure Communication Services Calling Effects SDK version `1.1.2` or later. The general availability (GA) stable version `1.28.4` and later of the Calling SDK support noise suppression features. Alternatively, if you opt to use the public preview version, Calling SDK versions `1.24.2-beta.1` and later also support noise suppression.
3738
>
3839
> Current browser support for adding audio noise suppression effects is available only on Chrome and Microsoft Edge desktop browsers.
3940
4041
> [!IMPORTANT]
41-
> **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.
42+
> **Echo Cancellation** 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.
4243
4344
> [!NOTE]
4445
> - Utilizing audio effects is available only on Chrome and Edge desktop browsers.
@@ -54,7 +55,7 @@ Use the `npm install` command to install the Azure Communication Services Audio
5455

5556
If you use the **public preview** of the Calling SDK, you must use the [beta version](https://www.npmjs.com/package/@azure/communication-calling-effects/v/next) of the Calling Effects SDK. Use the `npm install` command to install the Azure Communication Services Audio Effects SDK for JavaScript.
5657

57-
```console
58+
```console
5859
@azure/communication-calling-effects/v/next
5960
```
6061

@@ -184,7 +185,7 @@ await audioEffectsFeatureApi.stopEffects({
184185
});
185186
```
186187
### To start or stop audio effects packages during an active call
187-
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` AP
188+
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.
188189

189190
#### To start Azure Communication Services Noise Suppression
190191
```js

0 commit comments

Comments
 (0)