You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Receive events when together mode stream is started or updated
26
-
You can subscribe to the event `togetherModeStreamsUpdated` to receive notifications when together mode is started or updated. The event contains information about added video stream that can be rendered.
25
+
### Receive events when Together Mode stream starts or updates
26
+
You can subscribe to the event `togetherModeStreamsUpdated` to receive notifications when Together Mode starts or updates. The event contains information about rendering the added video stream.
|`id`| Unique number used to identify the stream. |
47
47
|`mediaStreamType`| Returns the Together Mode stream type. The value of `mediaStreamType` is always `video`. |
48
48
|`isReceiving`| Returns a Boolean value indicating if video packets are received. |
49
49
|`size`| Returns the size of the stream. The value indicates the quality of the stream. |
50
50
51
-
### Start Together mode for all participants
52
-
Users with role organizer, co-organizer, or presenter can start together mode for everyone in the meeting. When together mode starts, all subscribers to `togetherModeStreamsUpdated` event receive notification that allows participants to render together mode.
51
+
### Start Together Mode for all participants
52
+
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.
53
53
54
54
```js
55
55
togetherModeFeature.start();
56
56
```
57
-
### End together mode
57
+
### End Together Mode
58
+
Together Mode automatically ends for everyone when nobody subscribes to the video for 5 minutes. There's no API to end Together Mode.
58
59
59
-
Together mode automatically ends for everyone when nobody subscribes to the video for 5 minutes. There's no API to end together mode.
60
-
### Get coordinates of participants in together mode
60
+
### Get coordinates of participants in Together Mode
61
61
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.
62
62
63
63
```js
@@ -88,9 +88,9 @@ console.log(`Current scene has the following size: ${JSON.stringify(togetherMode
88
88
89
89
### Receive events when scene or seatings updates
90
90
> [!NOTE]
91
-
> Only Microsoft 365 users with role organizer, co-organizer and presenter can change scene or assignment of participants in the together mode. These changes can only be done from Teams Client.
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.
92
92
93
-
If there's a scene change or seat reassignment, 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, the `togetherModeSceneUpdated` or `togetherModeSeatingUpdated` events are raised respectively, providing an updated calculation of the participants’ seating positions.
|403 | 46303 | ExpectedError | The participant’s role doesn’t have the necessary permissions to invoke 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 was 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 was 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 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. |
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/together-mode.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ ms.custom: template-how-to
12
12
---
13
13
14
14
15
-
# Together mode
15
+
# Together Mode
16
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.
0 commit comments