Skip to content

Commit 4a1d005

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

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
@@ -13,7 +13,7 @@ ms.subservice: calling
1313
ms.custom: mode-other
1414
---
1515

16-
# Live Stream Quick Start
16+
# Live stream quick start
1717

1818
Live streaming will empower Contoso to engage thousands of online attendees by adding interactive live audio and video streaming functionality into their web and
1919
mobile applications that their audiences will love, no matter where they are. Interactive Live Streaming is the ability to broadcast media content to thousands of online
@@ -25,7 +25,7 @@ attendees while enabling some attendees to share their live audio and video, int
2525
- [Rooms](../rooms/get-started-rooms.md) meeting will be needed for role-based streaming.
2626
- The quick start examples here are available with the private preview version [1.11.0-alpha.20230124.1](https://www.npmjs.com/package/@azure/communication-calling/v/1.11.0-alpha.20230124.1) of the calling Web SDK. Make sure to use that or higher version when trying this quick start.
2727

28-
## Live Streaming with Rooms
28+
## 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

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`.
@@ -41,7 +41,7 @@ const context = { roomId: '<RoomId>' }
4141
const call = callAgent.join(context);
4242
```
4343

44-
### Receive Live Stream
44+
### Receive live stream
4545
Contoso can use the `Features.LiveStream` to get the live stream and play it.
4646

4747
```typescript
@@ -78,7 +78,7 @@ const subscribeToLiveVideoStream = async (liveVideoStream) => {
7878

7979
```
8080
81-
### Count Participants in both Real-time and Streaming Media Lane
81+
### Count participants in both real-time and streaming media lane
8282
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

0 commit comments

Comments
 (0)