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.
* * @param {Object} analyticsList[x].analytics -The information of the analytics.
1318
+
* * @param {string} analyticsList[x].analytics.algorithm -The algorithm of the analytics.
1319
+
* * @param {Object} analyticsList[x].media -The media description of the analytics, which must follow the definition of object "MediaSubOptions" in section "3.3.11 Participant Starts a Subscription" in "Client-Portal Protocol.md" doc.
1320
+
*/
1321
+
/**
1322
+
* @function getAnalytics
1323
+
* @desc This function gets the all the ongoing analytics in the specified room.
1324
+
* @memberOf OWT_REST.API
1325
+
* @param {string} room -Room ID.
1326
+
* @param {function} callback -Callback function on success
1327
+
* @param {function} callbackError -Callback function on error
* * @param {Object} analyticsInfo.analytics -The information of the analytics.
1349
+
* * @param {string} analyticsInfo.analytics.algorithm -The algorithm of the analytics.
1350
+
* * @param {Object} analyticsInfo.media -The media description of the analytics, which must follow the definition of object "MediaSubOptions" in section "3.3.11 Participant Starts a Subscription" in "Client-Portal Protocol.md" doc.
1351
+
*/
1352
+
/**
1353
+
* @function startAnalytics
1354
+
* @desc This function starts a analytics in the specified room.
1355
+
* @memberOf OWT_REST.API
1356
+
* @param {string} room -Room ID.
1357
+
* @param {string} algorithm -The algorithm ID.
1358
+
* @param {Object} media -The media description of the analytics, which must follow the definition of object "MediaSubOptions" in section "3.3.11 Participant Starts a Subscription" in "Client-Portal Protocol.md" doc.
1359
+
* @param {onStartingAnalyticsOK} callback -Callback function on success
1360
+
* @param {function} callbackError -Callback function on error
1361
+
* @example
1362
+
var roomId = '51c10d86909ad1f939000001';
1363
+
var algorithm = 'b849f44bee074b08bf3e627f3fc927c7'; //guid in plugin.cfg
0 commit comments