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
{{ message }}
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/mdfiles/index.md
+70-6Lines changed: 70 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -70,17 +70,81 @@ In the customized signaling channel, you need to implement `connect`, `disconnec
70
70
71
71
# 5 Conference mode
72
72
73
-
Conference mode is designed for applications with multiple participants. The JavaScript SDK includes a demo application for this.
74
-
75
-
Please refer to [media server user guide](https://software.intel.com/sites/products/documentation/webrtc/conference) for detailed server side features.
76
-
77
-
To initialize your HTML code, copy and paste the following code into the head section of your HTML document:
73
+
Conference mode is designed for applications with multiple participants through MCU conference server. To enable conference chat, copy and paste the following code into the head section of your HTML document:
After a room and a token are created, the token can then be sent to a client to join the conference using JavaScript APIs.
79
+
80
+
The JavaScript SDK includes a demo application for whole conferencing workflow with operations including join room, publish and subscribe streams, etc. Moreover, the conference server also supports simulcast. This can be enabled through JavaScript SDK.
81
+
82
+
## 5.1 Publish a simulcast stream
83
+
~~~~~~{.js}
84
+
// Example of simulcast publication.
85
+
conference = new Owt.Conference.ConferenceClient();
0 commit comments