You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/communication-services/tutorials/audio-quality-enhancements.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Learn how to add audio effects in your calls using Azure Communicat
5
5
author: sloanster
6
6
7
7
ms.author: micahvivion
8
-
ms.date: 04/13/2024
8
+
ms.date: 04/15/2024
9
9
ms.topic: tutorial
10
10
ms.service: azure-communication-services
11
11
ms.subservice: calling
@@ -35,7 +35,7 @@ You can find more [details ](https://www.npmjs.com/package/@azure/communication-
35
35
> You can learn about the specifics of the [calling API](/javascript/api/azure-communication-services/@azure/communication-calling/?view=azure-communication-services-js&preserve-view=true).
36
36
37
37
To use `noise suppression` audio effects within the Azure Communication Calling SDK, you need the `LocalAudioStream` that is currently in the call. You need access to the `AudioEffects` API of the `LocalAudioStream` to start and stop audio effects.
38
-
```js Sample on how to initialize the audio effects API
### How to turn on Noise Suppression on an ongoing call
72
+
### How to turn on Noise Suppression on during an ongoing call
73
73
There are situations where are user might start a call and not have **noise suppression** turned on, but their current environment might get noisy resulting in them needing to turn on **noise suppression**. To turn on **noise suppression**, you can use the `audioEffectsFeatureApi.startEffects` API.
74
-
```js Turn on Noise Suppression on an ongoing call
To start a call with **noise suppression** turned on, you can create a new `LocalAudioStream` with a `AudioDeviceInfo` (the LocalAudioStream source <u>shouldn't</u> be a raw `MediaStream` to use audio effects), and pass it in the `CallStartOptions.audioOptions`:
98
-
```js Start a call with Noise Suppression enable
98
+
```js
99
99
// As an example, here we are simply creating a LocalAudioStream using the current selected mic on the DeviceManager
0 commit comments