Skip to content

Commit 93bd7ac

Browse files
author
Kevin Le Goff
committed
Improve acrolinx suggestion
1 parent c0589fb commit 93bd7ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-video/manage-video-web.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const defaultSpeaker = deviceManager.selectedSpeaker;
7979
await deviceManager.selectSpeaker(localCameras[0]);
8080
```
8181

82-
Each `CallAgent` can choose its own microphone and speakers on its associated `DeviceManager`. It's recommended that different `CallAgents` use different microphones and speakers. They shouldn't share the same microphones nor speakers. If sharing happens, then Microphone User Facing Diagnostics might be triggered and the microphone stops working depending on the browser / os.
82+
Each `CallAgent` can choose its own microphone and speakers on its associated `DeviceManager`. We recommend that different `CallAgents` use different microphones and speakers. They shouldn't share the same microphones nor speakers. If sharing happens, then Microphone User Facing Diagnostics might be triggered and the microphone stops working depending on the browser / os.
8383

8484
### Local video stream
8585

@@ -111,7 +111,7 @@ You can use `deviceManager` and `VideoStreamRenderer` to begin rendering streams
111111
Once a `LocalVideoStream` is created, use it to set up`VideoStreamRenderer`. Once the `VideoStreamRenderer`is
112112
created call its `createView() method to get a view that you can add as a child to your page.
113113

114-
Note that this stream isn't sent to other participants; it's a local preview feed.
114+
This stream isn't sent to other participants; it's a local preview feed.
115115

116116
```js
117117
// To start viewing local camera preview
@@ -447,7 +447,7 @@ application should render at a given moment. Applications should handle these ch
447447
accordingly to the recommendation. There's a debounce period (around 10 s) between each update.
448448

449449
**Usage**
450-
The `optimalVideoCount` feature is a call feature. You need to reference the feature `OptimalVideoCount` via the `feature` method of the `Call` object. You can then set a listener via the `on` method of the `OptimalVideoCountCallFeature` to be notifiied when the optimalVideoCount changes. To unsubscribe from the changes you can call the `off` method
450+
The `optimalVideoCount` feature is a call feature. You need to reference the feature `OptimalVideoCount` via the `feature` method of the `Call` object. You can then set a listener via the `on` method of the `OptimalVideoCountCallFeature` to be notified when the optimalVideoCount changes. To unsubscribe from the changes, you can call the `off` method.
451451

452452
```javascript
453453
const optimalVideoCountFeature = call.feature(Features.OptimalVideoCount);

0 commit comments

Comments
 (0)