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/changelog.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,10 @@
1
1
Change Log
2
2
==========
3
+
# 4.3
4
+
* The type of `conferenceClient.publish` method's option is changed from `AudioEncodingParameters` and `VideoEncodingParameters` to `RTCRtpSendParameters`.
5
+
*`audio` and `video` of `PublicationSettings` is changed from `AudioPublicationSettings` and `VideoPublicationSettings` to `AudioPublicationSettings` array and `VideoPublicationSettings` array.
6
+
* Add `rid` to `VideoSubscriptionConstraints`. When `rid` is specified, other constraints will be ignored.
@@ -68,11 +68,89 @@ Signaling channel is an implementation to transmit signaling data for creating a
68
68
69
69
In the customized signaling channel, you need to implement `connect`, `disconnect` and `send`, invoke `onMessage` when a new message arrives, and invoke `onServerDisconnected` when the connection is lost. Then include your customized `sc.*.js` into the HTML page.
70
70
71
-
# 5 Events
71
+
# 5 Conference mode
72
72
73
-
The JavaScript objects fires events using `Ics.Base.EventDispatchers`. For more detailed events, please refer to the specific class description page.
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:
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();
a. The simulcast stream published to conference won't be transcoded.
146
+
b. The `rid` attribute may not be present once a 'streamadded' event triggered. Users should listen on stream's `updated` event for new `rid` added.
147
+
c. Current browsers support VP8 simulcast well while H.264 simulcast has some limitations.
148
+
149
+
# 6 Events
150
+
151
+
The JavaScript objects fires events using `Owt.Base.EventDispatchers`. For more detailed events, please refer to the specific class description page.
74
152
75
-
# 6 Privacy and security
153
+
# 7 Privacy and security
76
154
SDK will send operation system's name and version, browser name, version and abilities, SDK name and version to conference server and P2P endpoints it tries to make connection. SDK does not store this information on disk.
77
155
78
156
**Note:**\* Other names and brands may be claimed as the property of others.
0 commit comments