Skip to content

Commit 345ada3

Browse files
authored
Update video-effects.md
1 parent bcceb9b commit 345ada3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/communication-services/concepts/voice-video-calling/video-effects.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
ms.author: micahvivion
33
title: Azure Communication Services Calling video WebJS video effects
44
titleSuffix: An Azure Communication Services document
5-
description: In this document you'll learn how to create video effects on a Azure Communication Services call.
5+
description: In this document, you'll learn how to create video effects on an Azure Communication Services call.
66
author: sloanster
77
services: azure-communication-services
88

@@ -25,11 +25,11 @@ ms.subservice: calling
2525
> [!NOTE]
2626
> This library cannot be used standalone and can only work when used with the Azure Communication Calling client library for WebJS (https://www.npmjs.com/package/@azure/communication-calling).
2727
28-
The Azure Communication Calling SDK allows you to create video effects that other viewsers on a call will be able to see. For example, for a user doing ACS calling using the WebJS SDK you can now enable that the user can turn on background blur. With background blur enabled a user can feel more comfortable in doing a video call that the output video will just show a user and all other content will be blurred.
28+
The Azure Communication Calling SDK allows you to create video effects that other users on a call will be able to see. For example, for a user doing ACS calling using the WebJS SDK you can now enable that the user can turn on background blur. With background blur enabled a user can feel more comfortable in doing a video call that the output video will just show a user and all other content will be blurred.
2929

3030
## Prerequisites
3131
### Install the Azure Communication Services Calling SDK
32-
- An Azure account with an active subscription is required. Please see [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
32+
- An Azure account with an active subscription is required. See [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) on how to create an Azure account.
3333
- [Node.js](https://nodejs.org/) active Long Term Support(LTS) versions are recommended.
3434
- An active Communication Services resource. [Create a Communication Services resource](../../quickstarts/create-communication-resource.md).
3535
- A User Access Token to instantiate a call client. Learn how to [create and manage user access tokens](../../quickstarts/access-tokens.md). You can also use the Azure CLI and run the command below with your connection string to create a user and an access token. (Need to grab connection string from the resource through Azure portal.)
@@ -47,24 +47,24 @@ Use ‘npm install’ command to install the Azure Communication Calling Effects
4747
'npm install @azure/communication-calling-effects –save'
4848

4949
## Supported video effects:
50-
Currently the video effects supports the following ability:
50+
Currently the video effects support the following ability:
5151
- Background blur
5252
- Replace the background with a custom image
5353

5454
## Browser Support:
5555

5656
Currently creating video effects is only supported on Chrome Desktop Browser and Mac Safari Desktop.
5757

58-
### Class model:
58+
## Class model:
5959

6060
| Name | Description |
6161
|---|---|
6262
| BackgroundBlurEffect | The background blur effect class. |
6363
| BackgroundReplacementEffect | The background replacement with image effect class. |
6464

65-
To use video effects with the Azure Communication Calling client library, once you have created a LocalVideoStream, you need to get the VideoEffects feature API of from the LocalVideoStream.
65+
To use video effects with the Azure Communication Calling client library, once you've created a LocalVideoStream, you need to get the VideoEffects feature API of from the LocalVideoStream.
6666

67-
## Code examples
67+
### Code examples
6868
```js
6969
import * as AzureCommunicationCallingSDK from '@azure/communication-calling';
7070
import { BackgroundBlur, BackgroundReplacement } from '@azure/communication-calling-effects';

0 commit comments

Comments
 (0)