Skip to content

Commit 6efe372

Browse files
author
Kevin Le Goff
committed
Implement PR feedback
1 parent 1394d91 commit 6efe372

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ console.log(result.video);
155155
#### Notes
156156
- `videoDevicesUpdated` event fires when video devices are plugging-in/unplugged.
157157
- `audioDevicesUpdated` event fires when audio devices are plugged.
158-
- When the DeviceManager is created, at first it doesn't know about any devices if permissions aren't granted yet, so initially its device list is empty. If we then call the DeviceManager.askPermission() API, the user is prompted for device access. When the user selects on 'allow' to grant the access the device manager learns about the devices on the system, update it's device lists and emit the 'audioDevicesUpdated' and 'videoDevicesUpdated' events. If a user refreshes the page and creates a device manager, the device manager is able to learn about devices because user granted access previously. It has its device lists filled initially and it doesn't emit 'audioDevicesUpdated' nor 'videoDevicesUpdated' events.
158+
- When the DeviceManager is created, at first it doesn't know about any devices if permissions aren't granted yet, so initially its device name is empty and the doesn't contain detailed device information. If we then call the DeviceManager.askPermission() API, the user is prompted for device access. When the user selects on 'allow' to grant the access the device manager learns about the devices on the system, update it's device lists and emit the 'audioDevicesUpdated' and 'videoDevicesUpdated' events. If a user refreshes the page and creates a device manager, the device manager is able to learn about devices because user granted access previously. It has its device lists filled initially and it doesn't emit 'audioDevicesUpdated' nor 'videoDevicesUpdated' events.
159159
- Speaker enumeration/selection isn't supported on Android Chrome, iOS Safari, nor macOS Safari.
160160

161161
## Place a call with video camera
@@ -506,7 +506,7 @@ const isReceiving: boolean = remoteVideoStream.isReceiving;
506506
const size: StreamSize = remoteVideoStream.size;
507507
```
508508

509-
- `size`: The stream size. The higher the stream size, the better the video quality.
509+
- `size`: The stream size with information about the width and height of the video.
510510

511511
## VideoStreamRenderer methods and properties
512512

0 commit comments

Comments
 (0)