Skip to content

Commit ea0b811

Browse files
Merge pull request #246441 from chriswhilar/patch-77
Update manage-video-web.md
2 parents 9cb96a0 + b326a49 commit ea0b811

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,6 @@ subscribeToRemoteVideoStream = async (remoteVideoStream) => {
271271
let remoteVideoContainer = document.createElement('div');
272272
remoteVideoContainer.className = 'remote-video-container';
273273

274-
/**
275-
* isReceiving API is currently an @beta feature.
276-
* To use this api please use 'beta' version of Azure Communication Services Calling Web SDK.
277-
*/
278274
let loadingSpinner = document.createElement('div');
279275
// See the css example below for styling the loading spinner.
280276
loadingSpinner.className = 'loading-spinner';
@@ -410,9 +406,6 @@ const isAvailable: boolean = remoteVideoStream.isAvailable;
410406
```
411407

412408
- `isReceiving`:
413-
414-
> [!NOTE]
415-
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 1.5.4-beta.1+ release of Azure Communication Services Calling Web SDK
416409
- Will inform the application if remote video stream data is being received or not. Such scenarios are:
417410
- I am viewing the video of a remote participant who is on mobile browser. The remote participant brings the mobile browser app to the background. I now see the RemoteVideoStream.isReceiving flag goes to false and I see their video with black frames / frozen. When the remote participant brings the mobile browser back to the foreground, I now see the RemoteVideoStream.isReceiving flag to back to true, and I see their video playing normally.
418411
- I am viewing the video of a remote participant who is on whatever platforms. There are network issues from either side, their video start to have bad quality, probably because of network issues, so I see the RemoteVideoStream.isReceiving flag goes to false.

0 commit comments

Comments
 (0)