Skip to content

Commit 9bb2a94

Browse files
authored
Fixes to raise Acrolinx score to passing
1 parent 4a1d005 commit 9bb2a94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/communication-services/quickstarts/voice-video-calling/get-started-live-stream.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ attendees while enabling some attendees to share their live audio and video, int
2828
## Live streaming with Rooms
2929
Room participants can be assigned one of the following roles: **Presenter**, **Attendee** and **Consumer**. By default, a user is assigned an **Consumer** role, if no other role is assigned.
3030

31-
Participants with `Consumer` role will be receiving only the live stream. They will not be able to speak or share video or screen. Developers should not show the unmute, share video, and screen option to end users/consumers. Live stream supports both open and closed Rooms. In Open Rooms the default role is `Consumer`.
32-
On the other hand, Participants with other roles will receive both real-time and live stream. Developers can choose either stream to play.
33-
Please check [participant roles and permissions](../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions) to know more about the roles capabilities.
31+
Participants with `Consumer` role will be receiving only the live stream. They won't be able to speak or share video or screen. Developers shouldn't show the unmute, share video, and screen option to end users/consumers. Live stream supports both open and closed Rooms. In Open Rooms the default role is `Consumer`.
32+
On the other hand, Participants with other roles receive both real-time and live stream. Developers can choose either stream to play.
33+
Check [participant roles and permissions](../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions) to know more about the roles capabilities.
3434

3535
### Place a Rooms call (start live streaming)
3636
Live streaming will start when the Rooms call starts.
@@ -79,7 +79,7 @@ const subscribeToLiveVideoStream = async (liveVideoStream) => {
7979
```
8080
8181
### Count participants in both real-time and streaming media lane
82-
Web SDK already exposes `Call.totalParticipantCount` (available in beta release) which includes all participants count (Presenter, Attendee, Consumer, Participants in the lobby etc.). We have added a new API `Call.feature(Features.LiveStream).participantCount` under the `LiveStream` feature to have the count of streaming participants. `Call.feature(Features.LiveStream).participantCount` represents the number of participants receiving the streaming media only.
82+
Web SDK already exposes `Call.totalParticipantCount` (available in beta release) which includes all participants count (Presenter, Attendee, Consumer, Participants in the lobby etc.). We've added a new API `Call.feature(Features.LiveStream).participantCount` under the `LiveStream` feature to have the count of streaming participants. `Call.feature(Features.LiveStream).participantCount` represents the number of participants receiving the streaming media only.
8383
8484
```typescript
8585
call.feature(Features.LiveStream).on('participantCountChanged', e => {

0 commit comments

Comments
 (0)