Skip to content

Commit e8fa133

Browse files
Update get-started-live-stream.md
1 parent ed6ba63 commit e8fa133

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Room participants can be assigned one of the following roles: **Presenter**, **A
3030

3131
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`.
3232
On the other hand, Participants with other roles will receive both real-time and live stream. Developers can choose either stream to play.
33-
Pleae check [participant roles and permissions](../../concepts/rooms/room-concept.md#predefined-participant-roles-and-permissions) to know more about the roles capabilities.
33+
Please 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 receving 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 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.
8383
8484
```typescript
8585
call.feature(Features.LiveStream).on('participantCountChanged', e => {

0 commit comments

Comments
 (0)