Skip to content

Commit a027856

Browse files
committed
edit pass: add-noise-suppression
1 parent f0f2277 commit a027856

File tree

4 files changed

+19
-17
lines changed

4 files changed

+19
-17
lines changed

articles/communication-services/how-tos/calling-sdk/includes/install-sdk/install-sdk-windows.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,23 @@ ms.author: jowang
77
---
88
## Set up your system
99

10+
Follow these steps to set up your system.
11+
1012
### Create the Visual Studio project
1113

12-
For a Universal Windows Platform (UWP) app, in Visual Studio 2022, create a new **Blank App (Universal Windows)** project. After you enter the project name, feel free to choose any Windows SDK later than 10.0.17763.0.
14+
For a Universal Windows Platform app, in Visual Studio 2022, create a new **Blank App (Universal Windows)** project. After you enter the project name, feel free to choose any Windows SDK later than 10.0.17763.0.
1315

1416
For a WinUI 3 app, create a new project with the **Blank App, Packaged (WinUI 3 in Desktop)** template to set up a single-page WinUI 3 app. [Windows App SDK version 1.3](/windows/apps/windows-app-sdk/stable-channel#version-13) or later is required.
1517

1618
### Install the package and dependencies by using NuGet Package Manager
1719

1820
The Calling SDK APIs and libraries are publicly available via a NuGet package.
1921

20-
The following steps exemplify how to find, download, and install the Calling SDK NuGet package:
22+
To find, download, and install the Calling SDK NuGet package:
2123

2224
1. Open NuGet Package Manager by selecting **Tools** > **NuGet Package Manager** > **Manage NuGet Packages for Solution**.
23-
2. Select **Browse**, and then enter `Azure.Communication.Calling.WindowsClient` in the search box.
24-
3. Make sure that the **Include prerelease** check box is selected.
25-
4. Select the `Azure.Communication.Calling.WindowsClient` package, and then select `Azure.Communication.Calling.WindowsClient` [1.4.0-beta.1](https://www.nuget.org/packages/Azure.Communication.Calling.WindowsClient/1.4.0-beta.1) or a newer version.
26-
5. Select the checkbox that corresponds to the Communication Services project on the right-side tab.
27-
6. Select the **Install** button.
25+
1. Select **Browse**, and then enter **Azure.Communication.Calling.WindowsClient** in the search box.
26+
1. Make sure that the **Include prerelease** checkbox is selected.
27+
1. Select the **Azure.Communication.Calling.WindowsClient** package, and then select **Azure.Communication.Calling.WindowsClient** [1.4.0-beta.1](https://www.nuget.org/packages/Azure.Communication.Calling.WindowsClient/1.4.0-beta.1) or a newer version.
28+
1. Select the checkbox that corresponds to the Azure Communication Services project on the right pane.
29+
1. Select **Install**.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.subservice: calling
1616

1717
[!INCLUDE [Install SDK](../../../how-tos/calling-sdk/includes/install-sdk/install-sdk-android.md)]
1818

19-
The audio filter feature enables you to apply different audio preprocessing options to outgoing audio. There are two types of audio filters: `OutgoingAudioFilters` and `LiveOutgoingAudioFilters`. Use `OutgoingAudioFilters` to change settings before the call starts. Use `LiveOutgoingAudioFilters` to change settings while a call is in progress.
19+
You can use the audio filter feature to apply different audio preprocessing options to outgoing audio. The two types of audio filters are `OutgoingAudioFilters` and `LiveOutgoingAudioFilters`. Use `OutgoingAudioFilters` to change settings before the call starts. Use `LiveOutgoingAudioFilters` to change settings while a call is in progress.
2020

2121
You first need to import the Calling SDK and the associated classes:
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.subservice: calling
1616

1717
[!INCLUDE [Install SDK](../../../how-tos/calling-sdk/includes/install-sdk/install-sdk-ios.md)]
1818

19-
The audio filter feature enables you to apply different audio preprocessing options to outgoing audio. There are two types of audio filters: `OutgoingAudioFilters` and `LiveOutgoingAudioFilters`. Use `OutgoingAudioFilters` to change settings before the call starts. Use `LiveOutgoingAudioFilters` to change settings while a call is in progress.
19+
You can use the audio filter feature to apply different audio preprocessing options to outgoing audio. The two types of audio filters are `OutgoingAudioFilters` and `LiveOutgoingAudioFilters`. Use `OutgoingAudioFilters` to change settings before the call starts. Use `LiveOutgoingAudioFilters` to change settings while a call is in progress.
2020

2121
You first need to import the Calling SDK:
2222

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Tutorial - Add audio effects suppression ability to your Windows apps
2+
title: 'Tutorial: Add audio effects suppression ability to your Windows apps'
33
titleSuffix: An Azure Communication Services tutorial on how to enable audio effects
4-
description: Learn how to add audio effects in your calls using Azure Communication Services.
4+
description: Learn how to add audio effects in your calls by using Azure Communication Services.
55
author: t-leejiyoon
66
ms.date: 07/28/2023
77
ms.author: t-leejiyoon
@@ -15,7 +15,7 @@ ms.subservice: calling
1515

1616
[!INCLUDE [Install SDK](../../../how-tos/calling-sdk/includes/install-sdk/install-sdk-windows.md)]
1717

18-
The audio filter feature enable you to apply different audio preprocessing to outgoing audio. There are two types of audio filters: `OutgoingAudioFilters` and `LiveOutgoingAudioFilters`. Use `OutgoingAudioFilters` to change settings before the call starts and `LiveOutgoingAudioFilters` to change settings while a call is in progress.
18+
You can use the audio filter feature to apply different audio preprocessing to outgoing audio. The two types of audio filters are `OutgoingAudioFilters` and `LiveOutgoingAudioFilters`. Use `OutgoingAudioFilters` to change settings before the call starts. Use `LiveOutgoingAudioFilters` to change settings while a call is in progress.
1919

2020
You first need to import the Calling SDK:
2121

@@ -24,11 +24,11 @@ using Azure.Communication;
2424
using Azure.Communication.Calling.WindowsClient;
2525
```
2626

27-
## Before call starts
27+
## Before a call starts
2828

29-
`OutgoingAudioFilters` can be applied when a call starts.
29+
You can apply `OutgoingAudioFilters` when a call starts.
3030

31-
Begin by creating a `OutgoingAudioFilters` and passing it into OutgoingAudioOptions as shown in the following code:
31+
Begin by creating a `OutgoingAudioFilters` property and passing it into `OutgoingAudioOptions`, as shown in the following code:
3232

3333
```csharp
3434
var outgoingAudioOptions = new OutgoingAudioOptions();
@@ -45,9 +45,9 @@ outgoingAudioOptions.Filters = filters;
4545

4646
## During the call
4747

48-
You can apply `LiveOutgoingAudioFilters` after a call begins You can retrieve this object from the call object once the call begins. To change the setting in `LiveOutgoingAudioFilters`, set the members inside the class to a valid value and they're applied.
48+
You can apply `LiveOutgoingAudioFilters` after a call begins. You can retrieve this object from the call object after the call begins. To change the setting in `LiveOutgoingAudioFilters`, set the members inside the class to a valid value and they're applied.
4949

50-
Only a subset of the filters available from `OutgoingAudioFilters` are available during an active call: music mode, echo cancellation, and noise suppression mode.
50+
Only a subset of the filters available from `OutgoingAudioFilters` are available during an active call. They're music mode, echo cancellation, and noise suppression mode.
5151

5252
```csharp
5353
LiveOutgoingAudioFilters filter = call.LiveOutgoingAudioFilters;

0 commit comments

Comments
 (0)