Skip to content

Commit 957d2c8

Browse files
Merge pull request #285668 from sloanster/patch-21
Update video-effects-javascript.md
2 parents 61070de + 67e74ad commit 957d2c8

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/video-effects/video-effects-javascript.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,18 @@ You can use the Video effects feature to add effects to your video in video call
1919
2020
## Using video effects
2121
### Install the package
22-
Use the `npm install` command to install the Azure Communication Services Effects SDK for JavaScript.
22+
> [!NOTE]
23+
> Background blur and background replacement for **Web Desktop browsers** is in GA availability. This quickstart uses the Azure Communication Services Calling SDK version of `1.13.1` (or greater) and the Azure Communication Services Calling Effects SDK version greater than or equil to `1.0.1`. Currently desktop browser support for creating video background effects is only supported on Chrome and Edge Desktop Browser (Windows and Mac) and Mac Safari Desktop.
2324
2425
> [!IMPORTANT]
25-
> This quickstart uses the Azure Communication Services Calling SDK version of `1.13.1` (or greater) and the Azure Communication Services Calling Effects SDK version greater than or equil to `1.0.1`.
26+
> Background blur and replacement for **Android Chrome mobile browser** is available in public preview starting in build [1.29.1](https://github.com/Azure/Communication/blob/master/releasenotes/acs-javascript-calling-library-release-notes.md#1291-beta1-2024-08-26) and later beta WebJS SDK versions. This preview version is provided without a service-level agreement, and we don't recommend it for production workloads. Certain features might not be supported or might have constrained capabilities. For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
2627
27-
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include-document.md)]
28-
> [!IMPORTANT]
29-
> Background blur support for Android Chrome mobile browser has been added in build 1.29.1 beta.
28+
Use the `npm install` command to install the Azure Communication Services Effects SDK for JavaScript.
3029

3130
```console
3231
npm install @azure/communication-calling-effects --save
3332
```
34-
See [here](https://www.npmjs.com/package/@azure/communication-calling-effects) for more details on the calling commmunication effects npm package page.
35-
36-
> [!NOTE]
37-
> Currently browser support for creating video background effects is only supported on Chrome and Edge Desktop Browser (Windows and Mac) and Mac Safari Desktop.
33+
See [here](https://www.npmjs.com/package/@azure/communication-calling-effects) for more details on the calling communication effects npm package page.
3834

3935
> [!NOTE]
4036
> Currently there are two available video effects:
@@ -126,7 +122,7 @@ await videoEffectsFeatureApi.startEffects(backgroundBlurEffect);
126122
await videoEffectsFeatureApi.startEffects(backgroundReplacementEffect);
127123
```
128124

129-
At anytime if you want to check what effects are active, you can use the `activeEffects` property.
125+
At any time if you want to check what effects are active, you can use the `activeEffects` property.
130126
The `activeEffects` property returns an array with the names of the current active effects, and returns an empty array if there are no effects active.
131127
```js
132128
// Using the video effects feature api

0 commit comments

Comments
 (0)