Skip to content

Commit 6d9e41e

Browse files
committed
Standardize content
Check properties, settings, heading levels, run Acrolinx.
1 parent 03045f9 commit 6d9e41e

File tree

2 files changed

+21
-22
lines changed

2 files changed

+21
-22
lines changed

articles/communication-services/how-tos/calling-sdk/includes/together-mode/together-mode-web.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ ms.author: cnwankwo
1010

1111

1212

13-
Together Mode is an extended feature of the core `Call` API. You first need to import calling Features from the Calling SDK:
13+
Together Mode is an extended feature of the core Call API. You first need to import calling Features from the Calling SDK:
1414

1515
```js
1616
import { Features} from "@azure/communication-calling";
1717
```
1818

19-
Then you can get the feature API object from the call instance:
19+
Then you can get the Together Mode API object from the call instance:
2020

2121
```js
2222
const togetherModeFeature = call.feature(Features.TogetherMode);
@@ -41,21 +41,21 @@ You can access Together Mode streams through the property `togetherModeStream`.
4141
const togetherModeStreams = togetherModeFeature.togetherModeStream;
4242
```
4343

44-
| Together Mode Stream Properties | Description|
45-
|----------------------------------------------|--------|
46-
|`id` | Unique number used to identify the stream. |
47-
|`mediaStreamType` | Returns the Together Mode stream type. The value of `mediaStreamType` is always `video`. |
48-
|`isReceiving` | Returns a Boolean value indicating if video packets are received. |
49-
|`size` | Returns the Together Mode `StreamSize` with information about the width and height of the stream in pixels. |
44+
| Together Mode Stream Properties | Description |
45+
| --- | --- |
46+
| `id` | Unique number used to identify the stream. |
47+
| `mediaStreamType` | Returns the Together Mode stream type. The value of `mediaStreamType` is always `video`. |
48+
| `isReceiving` | Returns a Boolean value indicating if video packets are received. |
49+
| `size` | Returns the Together Mode `StreamSize` with information about the width and height of the stream in pixels. |
5050

5151
### Start Together Mode for all participants
52-
Microsoft 365 users with role organizer, co-organizer, or presenter can start Together Mode for everyone in the meeting. When Together Mode starts, all subscribers to the `togetherModeStreamsUpdated` event receive notification that enables participants to render together mode.
52+
Microsoft 365 users with role organizer, co-organizer, or presenter can start Together Mode for everyone in the meeting. When Together Mode starts, all subscribers to the `togetherModeStreamsUpdated` event receive notification that enables participants to render Together Mode.
5353

5454
```js
5555
togetherModeFeature.start();
5656
```
5757
### End Together Mode
58-
Together Mode will automatically terminate for all participants if no video stream is detected from any participant for a duration of one minute. There's no API to end Together Mode.
58+
Together Mode automatically terminates for all participants if no video stream is detected from any participant for a duration of one minute. There's no API to end Together Mode.
5959

6060
### Get coordinates of participants in Together Mode
6161
The property `togetherModeSeatingMap` provides coordinates for individual participants in the stream. Developers can use these coordinates to overlay participant info such as display name or visual features like spotlight, hand raised, and reactions on the stream.
@@ -88,9 +88,9 @@ console.log(`Current scene has the following size: ${JSON.stringify(togetherMode
8888

8989
### Receive events when scene or seatings updates
9090
> [!NOTE]
91-
> Only Microsoft 365 users with role organizer, co-organizer and presenter can change scene or assignment of participants in Together Mode. These changes can only be made from the Teams Client.
91+
> Only Microsoft 365 users with role organizer, co-organizer, or presenter can change scene or assignment of participants in Together Mode. These changes can only be made from the Teams Client.
9292
93-
If there's a scene change or seating, the `togetherModeSceneUpdated` or `togetherModeSeatingUpdated` events are raised respectively, providing an updated calculation of the participants’ seating positions.
93+
If there's a scene change or seating change, the `togetherModeSceneUpdated` or `togetherModeSeatingUpdated` events are raised respectively, providing an updated calculation of the participant seating positions.
9494

9595
```js
9696
const seatUpdate = (participantSeatingMap) => {
@@ -104,8 +104,8 @@ togetherModeFeature.on('togetherModeSeatingUpdated', seatUpdate);
104104
```
105105

106106
## Troubleshooting
107-
|code| Subcode | Result Category | Reason | Resolution |
107+
| Code | Subcode | Result Category | Reason | Resolution |
108108
|----------------------------------------------|--------|--------|---------|----------|
109-
|403 | 46303 | ExpectedError | The participant’s role doesn’t have the necessary permissions to call the `togetherMode` start API. | Only Microsoft 365 users with role organizer, co-organizer and presenter can start Together Mode. You can check the role of a user via 'role' property on instance of `Call` class. |
110-
|403 | 46304 | ExpectedError | Together Mode started in an unsupported calling scenario. | Ensure Together Mode is started only in group call or meeting scenarios. |
111-
|403 | 46306 | ExpectedError | Together Mode `start` API called by an Azure Communication Services user. | Only Microsoft 365 users with role organizer, co-organizer and presenter can start together mode. |
109+
| 403 | 46303 | ExpectedError | The participant’s role doesn’t have the necessary permissions to call the `togetherMode` start API. | Only Microsoft 365 users with role organizer, co-organizer, or presenter can start Together Mode. You can check the role of a user via `role` property on instance of `Call` class. |
110+
| 403 | 46304 | ExpectedError | Together Mode started in an unsupported calling scenario. | Ensure Together Mode is started only in group call or meeting scenarios. |
111+
| 403 | 46306 | ExpectedError | Together Mode `start` API called by an Azure Communication Services user. | Only Microsoft 365 users with role organizer, co-organizer, or presenter can start Together Mode. |

articles/communication-services/how-tos/calling-sdk/together-mode.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Together Mode
33
titleSuffix: An Azure Communication Services how-to guide
4-
description: Make your Microsoft Teams virtual meetings feel more personal with Teams together mode.
4+
description: Make your Microsoft Teams virtual meetings feel more personal with Teams Together Mode.
55
author: cnwankwo
66
ms.author: cnwankwo
77
ms.service: azure-communication-services
@@ -13,7 +13,7 @@ ms.custom: template-how-to
1313

1414

1515
# Together Mode
16-
In this article, you learn how to implement Microsoft Teams Together Mode with Azure Communication Services Calling SDKs. This feature enhances virtual meetings and calls, making them feel more personal. By creating a unified view that places everyone in a shared background, participants can connect seamlessly and collaborate effectively.
16+
This article describes how to implement Microsoft Teams Together Mode with Azure Communication Services Calling SDKs. Together Mode enhances virtual meetings and calls, making them feel more personal. By creating a unified view that places everyone in a shared background, participants can connect seamlessly and collaborate effectively.
1717

1818
[!INCLUDE [Public Preview Disclaimer](../../includes/public-preview-include-document.md)]
1919

@@ -40,8 +40,8 @@ The following table shows support for individual APIs in Calling SDK to individu
4040

4141
|Operations | Communication Services user | Microsoft 365 user |
4242
|-----------------------------|------------------------------|-------------------|
43-
| Start together mode stream | | ✔️ [1] |
44-
| Get together mode stream | ✔️ | ✔️ |
43+
| Start Together Mode stream | | ✔️ [1] |
44+
| Get Together Mode stream | ✔️ | ✔️ |
4545
| Get scene size | ✔️ | ✔️ |
4646
| Get seating map | ✔️ | ✔️ |
4747
| Change scene | | |
@@ -54,9 +54,8 @@ The following table shows support for Together Mode feature in individual Azure
5454

5555
| Platforms | Web | Web UI | iOS | iOS UI | Android | Android UI | Windows |
5656
|---------------|-----|--------|--------|--------|----------|--------|---------|
57-
|Is Supported | ✔️ | | | | | | |
57+
| Is Supported | ✔️ | | | | | | |
5858

59-
## Together Mode
6059

6160
[!INCLUDE [Together Mode Client-side JavaScript](./includes/together-mode/together-mode-web.md)]
6261

0 commit comments

Comments
 (0)