diff --git a/Makefile b/Makefile index 76dcca7f..cd457d3a 100644 --- a/Makefile +++ b/Makefile @@ -23,6 +23,17 @@ test: $(REPOSITORY):$(TAG) \ run test +integration: + @docker run \ + -p 3000:3000 \ + -p 8095:8095 \ + -v $(PWD):/rtcstats-server \ + --env RTCSTATS_LOG_LEVEL=debug \ + --entrypoint npm \ + --cpus=2 \ + $(REPOSITORY):$(TAG) \ + run integration + debug-restricted: @docker run \ -p 3000:3000 \ diff --git a/config/default.yaml b/config/default.yaml index b175c15e..2025a245 100644 --- a/config/default.yaml +++ b/config/default.yaml @@ -15,6 +15,10 @@ server: features: disableFeatExtraction: false + reconnectTimeout: 60000 + sequenceNumberSendingInterval: 60000 + orphanFileCleanupTimeoutMinutes: 12 + cleanupCronHour: 14 amplitude: key: diff --git a/config/test.yaml b/config/test.yaml index 009c6b0a..13f9e486 100644 --- a/config/test.yaml +++ b/config/test.yaml @@ -6,15 +6,21 @@ server: skipLoadBalancerIp: false logLevel: info jsonConsoleLog: false - useHTTPS: true + useHTTPS: false amplitude: key: '' +features: + sequenceNumberSendingInterval: 60000 + orphanFileCleanupTimeoutMinutes: 12 + cleanupCronIntervalMinutes: 720 + reconnectTimeout: 10000 + s3: accessKeyId: secretAccessKey: - region: us-west-2 + region: bucket: useIAMAuth: false diff --git a/package.json b/package.json index 083eef30..1e6641a6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "scripts": { "lint:fix": "eslint --fix ./src/", "lint": "eslint ./src/", - "integration": "node ./src/test/client.js", + "integration": "NODE_ENV=test node ./src/test/client.js", "test": "jest", "test:fix": "jest ./src/test/jest/extract.test.js -- --fix", "start": "NODE_ENV=production node ./src/app.js", diff --git a/src/ClientMessageHandler.js b/src/ClientMessageHandler.js new file mode 100644 index 00000000..408647b2 --- /dev/null +++ b/src/ClientMessageHandler.js @@ -0,0 +1,112 @@ + +const logger = require('./logging'); +const storeFile = require('./store/file'); +const utils = require('./utils/utils'); + +const messageTypes = { + SequenceNumber: 'sn' +}; + +/** + * This handles sending the messages to the frontend + */ +class ClientMessageHandler { + /** + * @param tempPath {string} + * @param sequenceNumberSendingInterval {number} + */ + constructor({ statsSessionId, tempPath, sequenceNumberSendingInterval, demuxSink, client }) { + logger.debug('[ClientMessageHandler] Constructor statsSessionId', statsSessionId); + this.statsSessionId = statsSessionId; + this.tempPath = tempPath; + this.sequenceNumberSendingInterval = sequenceNumberSendingInterval; + this.demuxSink = demuxSink; + this.client = client; + this.sendLastSequenceNumber = this.sendLastSequenceNumber.bind(this); + } + + /** + * Sends the last sequence number from demuxSink or reads from the dump file + */ + async sendLastSequenceNumber(isInitial) { + logger.debug('[ClientMessageHandler] Sending last sequence number for: ', this.statsSessionId); + let sequenceNumber = 0; + + if (this.demuxSink.lastSequenceNumber > 0) { + logger.debug('[ClientMessageHandler] Last sequence number from demux '); + sequenceNumber = this.demuxSink.lastSequenceNumber; + } else { + logger.debug('[ClientMessageHandler] Last sequence number from dump '); + sequenceNumber = await this._getLastSequenceNumberFromDump(); + } + + this.client.send(this._createMessage( + messageTypes.SequenceNumber, + this._createSequenceNumberBody(sequenceNumber, isInitial) + )); + + if (this.client.readyState === 1) { + setTimeout( + this.sendLastSequenceNumber, + this.sequenceNumberSendingInterval, + this.client, this.statsSessionId + ); + } + logger.debug('[ClientMessageHandler] Last sequence number: ', sequenceNumber); + } + + /** + * Reads the last sequnce number from the dump file. + */ + async _getLastSequenceNumberFromDump() { + const dumpPath = utils.getDumpPath(this.tempPath, this.statsSessionId); + + logger.debug('[ClientMessageHandler] Last sequence number from dump: ', dumpPath); + + const promis = storeFile.getLastLine(dumpPath, 1) + .then( + lastLine => utils.parseLineForSequenceNumber(lastLine)) + .catch(() => { + logger.debug('[ClientMessageHandler] New connection. File doesn\'t exist. file: ', dumpPath); + + return 0; + }); + + const result = await promis; + + return result; + } + + /** + * + * @param type {string} + * @param body {string} + * @returns {string} + */ + _createMessage(type, body) { + return JSON.stringify({ + 'type': type, + 'body': body + }); + } + + /** + * + * @param {*} sequenceNumber + * @param {*} isInitial + * @returns {object} + */ + _createSequenceNumberBody(sequenceNumber, isInitial) { + const body = { + value: sequenceNumber + }; + + if (isInitial === true) { + body.state = 'initial'; + } + + return body; + } +} + +module.exports = ClientMessageHandler; diff --git a/src/DumpPersister.js b/src/DumpPersister.js new file mode 100644 index 00000000..1b522ce6 --- /dev/null +++ b/src/DumpPersister.js @@ -0,0 +1,94 @@ + +const logger = require('./logging'); +const PromCollector = require('./metrics/PromCollector'); +const { saveEntryAssureUnique } = require('./store/dynamo'); +const initS3Store = require('./store/s3.js'); +const { asyncDeleteFile, getDumpPath } = require('./utils/utils'); + +/** + * + */ +class DumpPersister { + /** + * + */ + constructor({ tempPath, s3Config, disableFeatExtraction, webhookSender, config }) { + this.tempPath = tempPath; + this.store = this.createDumpStorage(s3Config); + this.disableFeatExtraction = disableFeatExtraction; + this.webhookSender = webhookSender; + this.config = config; + } + + /** + * Initialize the service which will persist the dump files. + */ + createDumpStorage(s3Config) { + if (s3Config?.region) { + return initS3Store(s3Config); + } + logger.warn('[DumpPersister] S3 is not configured!'); + } + + /** + * Persist the dump file to the configured store and save the associated metadata. At the time of writing the + * only supported store for metadata is dynamo. + * + * @param {Object} sinkMeta - metadata associated with the dump file. + */ + async persistDumpData(sinkMeta) { + + // Metadata associated with a dump can get large so just select the necessary fields. + const { clientId } = sinkMeta; + let uniqueClientId = clientId; + + // Because of the current reconnect mechanism some files might have the same clientId, in which case the + // underlying call will add an associated uniqueId to the clientId and return it. + uniqueClientId = await saveEntryAssureUnique(sinkMeta); + + // Store the dump file associated with the clientId using uniqueClientId as the key value. In the majority of + // cases the input parameter will have the same values. + this.storeDump(sinkMeta, uniqueClientId ?? clientId); + } + + /** + * Store the dump to the configured store. The dump file might be stored under a different + * name, this is to account for the reconnect mechanism currently in place. + * + * @param {string} sinkMeta - name that the dump file will actually have on disk. + * @param {string} uniqueClientId - name that the dump will have on the store. + */ + async storeDump(sinkMeta, uniqueClientId) { + const { + clientId, + isJaaSTenant + } = sinkMeta; + + + const dumpPath = getDumpPath(this.tempPath, clientId); + const { webhooks: { sendRtcstatsUploaded } = { sendRtcstatsUploaded: false } } = this.config; + + try { + + logger.info(`[S3] Storing dump ${uniqueClientId} with path ${dumpPath}`); + + await this.store?.put(uniqueClientId, dumpPath); + + if (isJaaSTenant && sendRtcstatsUploaded && this.webhookSender) { + const signedLink = await this.store?.getSignedUrl(uniqueClientId); + + logger.info('[App] Signed url:', signedLink); + + this.webhookSender.sendRtcstatsUploadedHook(sinkMeta, signedLink); + } + } catch (err) { + PromCollector.storageErrorCount.inc(); + + logger.error('Error storing: %s uniqueId: %s - %s', dumpPath, uniqueClientId, err); + } finally { + await asyncDeleteFile(dumpPath); + } + } +} + +module.exports = DumpPersister; diff --git a/src/OrphanFileHelper.js b/src/OrphanFileHelper.js new file mode 100644 index 00000000..14c374a0 --- /dev/null +++ b/src/OrphanFileHelper.js @@ -0,0 +1,103 @@ +const fs = require('fs'); + + +const logger = require('./logging'); +const fileStore = require('./store/file'); +const utils = require('./utils/utils'); + +/** + * + */ +class OrphanFileHelper { + /** + * + */ + constructor({ tempPath, orphanFileCleanupTimeoutMinutes, wsHandler, cleanupCronHour }) { + this.tempPath = tempPath; + this.orphanFileCleanupTimeoutMs = orphanFileCleanupTimeoutMinutes * 60 * 1000; + this.wsHandler = wsHandler; + this.cleanupCronHour = cleanupCronHour; + this.processOldFiles = this.processOldFiles.bind(this); + } + + /** + * Remove old files from the temp folder. + */ + processOldFiles() { + logger.info('[OrphanFileHelper] Waiting for connections to reconnect.'); + + if (fs.existsSync(this.tempPath)) { + fs.readdirSync(this.tempPath).forEach(fname => { + + const filePath = utils.getDumpPath(this.tempPath, fname); + + logger.debug(`[OrphanFileHelper] Trying to process file ${filePath}`); + fs.stat(filePath, (err, stats) => { + if (err) { + logger.error(`[OrphanFileHelper] File does not exist! ${filePath}`); + } + + this.processIfExpired(stats, filePath, fname); + }); + }); + } else { + logger.error('[OrphanFileHelper] Temp path doesn\'t exists. path: ', this.tempPath); + throw new Error(`Temp path doesn't exists. tempPath: ${this.tempPath}`); + } + this.scheduleNext(this.cleanupCronHour); + } + + /** + * + */ + processIfExpired(stats, filePath, fname) { + const lastModifiedDurationMs = Math.abs(Date.now() - stats.mtime.getTime()); + + logger.debug(`[OrphanFileHelper] File last modified ${lastModifiedDurationMs} ms ago:`); + if (lastModifiedDurationMs > this.orphanFileCleanupTimeoutMs) { + logger.debug(`[OrphanFileHelper] Start processing the file ${`${filePath}`}`); + const response = fileStore.getObjectsByKeys( + filePath, [ 'connectionInfo', 'identity' ]); + + response.then( + obj => { + const jsonObj = obj; + let meta; + let connectionInfo; + + if (jsonObj?.connectionInfo) { + meta = JSON.parse(jsonObj?.connectionInfo); + meta.dumpPath = `${filePath}`; + } + + if (jsonObj?.identity) { + connectionInfo = jsonObj?.identity; + } + + this.wsHandler.processData(fname, meta, connectionInfo); + }) + .catch(e => { + logger.error(`[OrphanFileHelper] ${e}`); + logger.info(`[OrphanFileHelper] New connection. File doesn't exist. ${filePath}`); + }); + } + } + + /** + * + * @param {*} func + */ + scheduleNext(hour) { + const now = new Date(); + const start = new Date(now.getFullYear(), now.getMonth(), now.getDate() + 1, hour, 0, 0, 0); + + const wait = start.getTime() - now.getTime(); + + setTimeout(() => { // Wait until the specified hour + this.processOldFiles(); + }, wait); + } +} + + +module.exports = OrphanFileHelper; diff --git a/src/WsHandler.js b/src/WsHandler.js new file mode 100644 index 00000000..38d88c41 --- /dev/null +++ b/src/WsHandler.js @@ -0,0 +1,240 @@ +const JSONStream = require('JSONStream'); +const { pipeline } = require('stream'); +const url = require('url'); +const WebSocket = require('ws'); + +const ClientMessageHandler = require('./ClientMessageHandler'); +const DemuxSink = require('./demux'); +const logger = require('./logging'); +const PromCollector = require('./metrics/PromCollector'); +const { getStatsFormat } = require('./utils/stats-detection'); +const { extractTenantDataFromUrl } = require('./utils/utils'); +const { RequestType } = require('./utils/utils'); + +/** + * + */ +class WsHandler { + + /** + * + */ + constructor({ tempPath, reconnectTimeout, sequenceNumberSendingInterval, workerPool, config }) { + this.sessionTimeoutId = {}; + this.tempPath = tempPath; + this.reconnectTimeout = reconnectTimeout; + this.sequenceNumberSendingInterval = sequenceNumberSendingInterval; + this.processData = this.processData.bind(this); + this.workerPool = workerPool; + this.config = config; + } + + /** + * + * @param {*} wsServer + */ + setupWebSocketsServer(wsServer) { + const wss = new WebSocket.Server({ server: wsServer }); + + wss.on('connection', this._handle.bind(this)); + + return wss; + } + + /** + * + * @param {*} meta + * @param {*} connectionInfo + */ + processData(id, meta, connectionInfo, tenantInfo) { + logger.info('[WsHandler] Queue for processing id %s', id); + + // Metadata associated with a dump can get large so just select the necessary fields. + const dumpData = { + app: meta.applicationName || 'Undefined', + clientId: id, + conferenceId: meta.confName, + conferenceUrl: meta.confID, + dumpPath: meta.dumpPath, + endDate: Date.now(), + endpointId: meta.endpointId, + startDate: meta.startDate, + sessionId: meta.meetingUniqueId, + userId: meta.displayName, + ampSessionId: meta.sessionId, + ampUserId: meta.userId, + ampDeviceId: meta.deviceId, + statsFormat: connectionInfo.statsFormat, + isBreakoutRoom: meta.isBreakoutRoom, + breakoutRoomId: meta.roomId, + parentStatsSessionId: meta.parentStatsSessionId, + ...tenantInfo + }; + + // Don't process dumps generated by JVB & Jigasi, there should be a more formal process to + if (this.config.features.disableFeatExtraction + || connectionInfo.clientProtocol?.includes('JVB') || connectionInfo.clientProtocol?.includes('JIGASI')) { + this.persistDumpData(dumpData); + } else { + // Add the clientId in the worker pool so it can process the associated dump file. + this.workerPool.addTask({ + type: RequestType.PROCESS, + body: dumpData + }); + } + } + + /** + * Main handler for web socket connections. + * Messages are sent through a node stream which saves them to a dump file. + * After the websocket is closed the session is considered as terminated and the associated dump + * is queued up for feature extraction through the {@code WorkerPool} implementation. + * + * @param {*} client + * @param {*} upgradeReq + */ + _handle(client, upgradeReq) { + PromCollector.connected.inc(); + + // the url the client is coming from + const referer = upgradeReq.headers.origin + upgradeReq.url; + const ua = upgradeReq.headers['user-agent']; + const queryObject = url.parse(referer, true).query; + const statsSessionId = queryObject?.statsSessionId; + + this._clearConnectionTimeout(statsSessionId); + const connectionInfo = this._createConnectionInfo(upgradeReq, referer, ua, client); + const demuxSink = this._createDemuxSink(connectionInfo); + + logger.info('[WsHandler] Client connected: %s', statsSessionId); + + const clientMessageHandler = this._createClientMessageHandler(statsSessionId, demuxSink, client); + + + clientMessageHandler.sendLastSequenceNumber(true); + + demuxSink.on('close-sink', ({ id, meta }) => { + + logger.info( + '[WsHandler] Websocket disconnected waiting for processing the data %s in %d ms', + id, + this.reconnectTimeout + ); + + const { confID = '' } = meta; + const tenantInfo = extractTenantDataFromUrl(confID); + + const timeoutId = setTimeout(this.processData, + this.reconnectTimeout, + id, meta, connectionInfo, tenantInfo + ); + + this.sessionTimeoutId[id] = timeoutId; + }); + + const connectionPipeline = pipeline( + WebSocket.createWebSocketStream(client), + JSONStream.parse(), + demuxSink, + err => { + if (err) { + // A pipeline can multiplex multiple sessions however if one fails + // the whole pipeline does as well, + PromCollector.sessionErrorCount.inc(); + + logger.error('[WsHandler] Connection pipeline: %o; error: %o', connectionInfo, err); + } + }); + + connectionPipeline.on('finish', () => { + logger.info('[WsHandler] Connection pipeline successfully finished %o', connectionInfo); + + // We need to explicity close the ws, you might notice that we don't do the same in case of an error + // that's because in that case the error will propagate up the pipeline chain and the ws stream will also + // close the ws. + client.close(); + }); + + logger.info( + '[WsHandler] New app connected: ua: %s, protocol: %s, referer: %s', + ua, + client.protocol, + referer + ); + + client.on('error', e => { + logger.error('[WsHandler] Websocket error: %s', e); + PromCollector.connectionError.inc(); + }); + + client.on('close', () => { + PromCollector.connected.dec(); + }); + } + + /** + * + */ + _createDemuxSink(connectionInfo) { + const demuxSinkOptions = { + tempPath: this.tempPath, + connectionInfo, + dumpFolder: './temp', + log: logger + }; + + return new DemuxSink(demuxSinkOptions); + } + + /** + * + */ + _createClientMessageHandler(statsSessionId, demuxSink, client) { + const clientMessageHandlerOptions = { + statsSessionId, + tempPath: this.tempPath, + sequenceNumberSendingInterval: this.sequenceNumberSendingInterval, + demuxSink, + client + }; + + return new ClientMessageHandler(clientMessageHandlerOptions); + } + + /** + * + * @returns + */ + _createConnectionInfo(upgradeReq, referer, ua, client) { + // During feature extraction we need information about the browser in order to decide which algorithms use. + const connectionInfo = { + path: upgradeReq.url, + origin: upgradeReq.headers.origin, + url: referer, + userAgent: ua, + clientProtocol: client.protocol + }; + + connectionInfo.statsFormat = getStatsFormat(connectionInfo); + + return connectionInfo; + } + + /** + * Clear the connection timeout if the user is reconnected/ + * + * @param {*} timeoutId + */ + _clearConnectionTimeout(sessionId) { + const timeoutId = this.sessionTimeoutId[sessionId]; + + if (timeoutId) { + clearTimeout(timeoutId); + delete this.sessionTimeoutId[timeoutId]; + logger.info('[WsHandler] Client reconnected. Clear timeout for connectionId: %s', sessionId); + PromCollector.clientReconnectedCount.inc(); + } + } +} + +module.exports = WsHandler; diff --git a/src/app.js b/src/app.js index 9d46b9e8..d3bba40b 100644 --- a/src/app.js +++ b/src/app.js @@ -1,103 +1,68 @@ -const JSONStream = require('JSONStream'); + const assert = require('assert').strict; const config = require('config'); const fs = require('fs'); const http = require('http'); const https = require('https'); const path = require('path'); -const { pipeline } = require('stream'); -const WebSocket = require('ws'); const { name: appName, version: appVersion } = require('../package'); +const DumpPersister = require('./DumpPersister'); +const OrphanFileHelper = require('./OrphanFileHelper'); +const WsHandler = require('./WsHandler'); const AmplitudeConnector = require('./database/AmplitudeConnector'); const FeaturesPublisher = require('./database/FeaturesPublisher'); const FirehoseConnector = require('./database/FirehoseConnector'); -const DemuxSink = require('./demux'); const logger = require('./logging'); const PromCollector = require('./metrics/PromCollector'); -const { saveEntryAssureUnique } = require('./store/dynamo'); -const initS3Store = require('./store/s3.js'); -const { getStatsFormat } = require('./utils/stats-detection'); -const { asyncDeleteFile, - getEnvName, +const { getEnvName, getIdealWorkerCount, - RequestType, ResponseType, - extractTenantDataFromUrl, obfuscatePII } = require('./utils/utils'); const AwsSecretManager = require('./webhooks/AwsSecretManager'); const WebhookSender = require('./webhooks/WebhookSender'); const WorkerPool = require('./worker-pool/WorkerPool'); let amplitude; -let store; + let featPublisher; -let tempPath; let webhookSender; let secretManager; +let tempDumpPath; -/** - * Store the dump to the configured store. The dump file might be stored under a different - * name, this is to account for the reconnect mechanism currently in place. - * - * @param {string} clientId - name that the dump file will actually have on disk. - * @param {string} uniqueClientId - name that the dump will have on the store. - */ -async function storeDump(sinkMeta, uniqueClientId) { - - const { - clientId, - isJaaSTenant - } = sinkMeta; - - const dumpPath = `${tempPath}/${clientId}`; - const { webhooks: { sendRtcstatsUploaded } = { sendRtcstatsUploaded: false } } = config; - - try { - - logger.info(`[S3] Storing dump ${uniqueClientId} with path ${dumpPath}`); - - await store?.put(uniqueClientId, dumpPath); - - if (isJaaSTenant && sendRtcstatsUploaded && webhookSender) { - const signedLink = await store?.getSignedUrl(uniqueClientId); - - webhookSender.sendRtcstatsUploadedHook(sinkMeta, signedLink); - } - } catch (err) { - PromCollector.storageErrorCount.inc(); - - logger.error('Error storing: %s uniqueId: %s - %s', dumpPath, uniqueClientId, err); - } finally { - await asyncDeleteFile(dumpPath); - } -} - -/** - * Persist the dump file to the configured store and save the associated metadata. At the time of writing the - * only supported store for metadata is dynamo. - * - * @param {Object} sinkMeta - metadata associated with the dump file. - */ -async function persistDumpData(sinkMeta) { - - // Metadata associated with a dump can get large so just select the necessary fields. - const { clientId } = sinkMeta; - let uniqueClientId = clientId; - - // Because of the current reconnect mechanism some files might have the same clientId, in which case the - // underlying call will add an associated uniqueId to the clientId and return it. - uniqueClientId = await saveEntryAssureUnique(sinkMeta); - - // Store the dump file associated with the clientId using uniqueClientId as the key value. In the majority of - // cases the input parameter will have the same values. - storeDump(sinkMeta, uniqueClientId ?? clientId); -} +const { s3, features: { + disableFeatExtraction, + reconnectTimeout, + sequenceNumberSendingInterval, + cleanupCronHour } +} = config; const workerScriptPath = path.join(__dirname, './worker-pool/ExtractWorker.js'); const workerPool = new WorkerPool(workerScriptPath, getIdealWorkerCount()); +logger.info('[App] worker pool:', workerPool); +const dumpPersister = new DumpPersister({ + tempPath: getTempPath(), + s3, + disableFeatExtraction, + webhookSender, + config +}); +const wsHandler = new WsHandler({ + tempPath: getTempPath(), + reconnectTimeout, + sequenceNumberSendingInterval, + workerPool, + config +}); +const orphanFileHelper = new OrphanFileHelper({ + tempPath: getTempPath(), + reconnectTimeout, + wsHandler, + cleanupCronHour +}); + workerPool.on(ResponseType.DONE, body => { const { dumpInfo = {}, features = {} } = body; const obfuscatedDumpInfo = obfuscatePII(dumpInfo); @@ -132,7 +97,7 @@ workerPool.on(ResponseType.DONE, body => { logger.error('[App] Handling DONE event error %o and body %o', e, obfuscatedDumpInfo); } - persistDumpData(dumpInfo); + dumpPersister.persistDumpData(dumpInfo); }); @@ -146,23 +111,12 @@ workerPool.on(ResponseType.ERROR, body => { // If feature extraction failed at least attempt to store the dump in s3. if (dumpInfo.clientId) { - persistDumpData(dumpInfo); + dumpPersister.persistDumpData(dumpInfo); } else { logger.error('[App] Handling ERROR without a clientId field!'); } }); -/** - * Initialize the service which will persist the dump files. - */ -function setupDumpStorage() { - if (config.s3?.region) { - store = initS3Store(config.s3); - } else { - logger.warn('[App] S3 is not configured!'); - } -} - /** * Configure Amplitude backend */ @@ -199,25 +153,30 @@ function setupFeaturesPublisher() { } } +/** + * + */ +function getTempPath() { + // Temporary path for stats dumps must be configured. + const { server: { tempPath } } = config; + + if (tempDumpPath === undefined) { + tempDumpPath = tempPath; + } + + assert(tempDumpPath); + + return tempDumpPath; +} + /** * Initialize the directory where temporary dump files will be stored. */ function setupWorkDirectory() { + const tempPath = getTempPath(); + try { - // Temporary path for stats dumps must be configured. - tempPath = config.server.tempPath; - assert(tempPath); - - if (fs.existsSync(tempPath)) { - fs.readdirSync(tempPath).forEach(fname => { - try { - logger.debug(`[App] Removing file ${`${tempPath}/${fname}`}`); - fs.unlinkSync(`${tempPath}/${fname}`); - } catch (e) { - logger.error(`[App] Error while unlinking file ${fname} - ${e}`); - } - }); - } else { + if (!fs.existsSync(tempPath)) { logger.debug(`[App] Creating working dir ${tempPath}`); fs.mkdirSync(tempPath); } @@ -229,6 +188,7 @@ function setupWorkDirectory() { } } + /** * Initialize http server exposing prometheus statistics. */ @@ -260,132 +220,6 @@ function setupMetricsServer() { return metricsServer; } -/** - * Main handler for web socket connections. - * Messages are sent through a node stream which saves them to a dump file. - * After the websocket is closed the session is considered as terminated and the associated dump - * is queued up for feature extraction through the {@code WorkerPool} implementation. - * - * @param {*} client - * @param {*} upgradeReq - */ -function wsConnectionHandler(client, upgradeReq) { - PromCollector.connected.inc(); - - // the url the client is coming from - const referer = upgradeReq.headers.origin + upgradeReq.url; - const ua = upgradeReq.headers['user-agent']; - - // During feature extraction we need information about the browser in order to decide which algorithms use. - const connectionInfo = { - path: upgradeReq.url, - origin: upgradeReq.headers.origin, - url: referer, - userAgent: ua, - clientProtocol: client.protocol - }; - - connectionInfo.statsFormat = getStatsFormat(connectionInfo); - - const demuxSinkOptions = { - connectionInfo, - dumpFolder: './temp', - log: logger - }; - - const demuxSink = new DemuxSink(demuxSinkOptions); - - demuxSink.on('close-sink', ({ id, meta }) => { - logger.info('[App] Queue for processing id %s', id); - - const { confID = '' } = meta; - const tenantInfo = extractTenantDataFromUrl(confID); - - // Metadata associated with a dump can get large so just select the necessary fields. - const dumpData = { - app: meta.applicationName || 'Undefined', - clientId: id, - conferenceId: meta.confName, - conferenceUrl: meta.confID, - dumpPath: meta.dumpPath, - endDate: Date.now(), - endpointId: meta.endpointId, - startDate: meta.startDate, - sessionId: meta.meetingUniqueId, - userId: meta.displayName, - ampSessionId: meta.sessionId, - ampUserId: meta.userId, - ampDeviceId: meta.deviceId, - statsFormat: connectionInfo.statsFormat, - isBreakoutRoom: meta.isBreakoutRoom, - breakoutRoomId: meta.roomId, - parentStatsSessionId: meta.parentStatsSessionId, - ...tenantInfo - }; - - // Don't process dumps generated by JVB & Jigasi, there should be a more formal process to - if (config.features.disableFeatExtraction - || connectionInfo.clientProtocol?.includes('JVB') || connectionInfo.clientProtocol?.includes('JIGASI')) { - persistDumpData(dumpData); - } else { - // Add the clientId in the worker pool so it can process the associated dump file. - workerPool.addTask({ - type: RequestType.PROCESS, - body: dumpData - }); - } - }); - - const connectionPipeline = pipeline( - WebSocket.createWebSocketStream(client), - JSONStream.parse(), - demuxSink, - err => { - if (err) { - // A pipeline can multiplex multiple sessions however if one fails - // the whole pipeline does as well, - PromCollector.sessionErrorCount.inc(); - - logger.error('[App] Connection pipeline: %o; error: %o', connectionInfo, err); - } - }); - - connectionPipeline.on('finish', () => { - logger.info('[App] Connection pipeline successfully finished %o', connectionInfo); - - // We need to explicity close the ws, you might notice that we don't do the same in case of an error - // that's because in that case the error will propagate up the pipeline chain and the ws stream will also - // close the ws. - client.close(); - }); - - logger.info( - '[App] New app connected: ua: %s, protocol: %s, referer: %s', - ua, - client.protocol, - referer - ); - - client.on('error', e => { - logger.error('[App] Websocket error: %s', e); - PromCollector.connectionError.inc(); - }); - - client.on('close', () => { - PromCollector.connected.dec(); - }); -} - -/** - * - * @param {*} wsServer - */ -function setupWebSocketsServer(wsServer) { - const wss = new WebSocket.Server({ server: wsServer }); - - wss.on('connection', wsConnectionHandler); -} - /** * Handler used for basic availability checks. * @@ -457,7 +291,7 @@ function setupWebServer() { server = setupHttpServer(port); } - setupWebSocketsServer(server); + wsHandler.setupWebSocketsServer(server); } /** @@ -497,7 +331,7 @@ async function startRtcstatsServer() { setupSecretManager(); await setupWebhookSender(); setupWorkDirectory(); - setupDumpStorage(); + orphanFileHelper.processOldFiles(); setupFeaturesPublisher(); setupAmplitudeConnector(); setupMetricsServer(); diff --git a/src/demux.js b/src/demux.js index 3d23f196..e1d6b100 100644 --- a/src/demux.js +++ b/src/demux.js @@ -5,6 +5,8 @@ const { Writable } = require('stream'); const util = require('util'); const PromCollector = require('./metrics/PromCollector.js'); +const fileStore = require('./store/file'); +const utils = require('./utils/utils'); const { uuidV4 } = require('./utils/utils.js'); @@ -14,6 +16,21 @@ const cwd = process.cwd(); // not the FileHandle objects from fs.promises.open const fsOpen = util.promisify(fs.open); + +/** + * + */ +class RequestData { + /** + * + * @param {*} param0 + */ + constructor({ timestamp, sequenceNumber }) { + this.timestamp = timestamp; + this.sequenceNumber = sequenceNumber; + } +} + /** * Stream designed to handle API requests and write them to a sink (file WritableStream at this point) */ @@ -28,7 +45,7 @@ class DemuxSink extends Writable { * @param {boolean} persistDump - Flag used for generating a complete dump of the data coming to the stream. * Required when creating mock tests. */ - constructor({ dumpFolder, connectionInfo, log, persistDump = false }) { + constructor({ tempPath, dumpFolder, connectionInfo, log, persistDump = false }) { super({ objectMode: true }); this.dumpFolder = dumpFolder; @@ -37,6 +54,9 @@ class DemuxSink extends Writable { this.timeoutId = -1; this.sinkMap = new Map(); this.persistDump = persistDump; + this.lastSequenceNumber = 0; + this.lastTimestamp = -1; + this.tempPath = tempPath; // TODO move this as a separate readable/writable stream so we don't pollute this class. if (this.persistDump) { @@ -124,16 +144,17 @@ class DemuxSink extends Writable { * * @param {string} id - sink id as saved in the sinkMap */ - _handleSinkClose(id) { + _handleSinkClose(id, meta) { const sinkData = this.sinkMap.get(id); // Sanity check, make sure the data is available if not log an error and just send the id such that any // listening client has s chance to handle the sink. if (sinkData) { // we need to emit this on file stream finish - this.emit('close-sink', { id: sinkData.id, - meta: { ...sinkData.meta } }); - + this.emit('close-sink', { + id: sinkData.id, + meta: this._updateMeta(sinkData.meta, meta) + }); } else { this.log.error('[Demux] sink on close meta should be available id:', id); @@ -151,12 +172,12 @@ class DemuxSink extends Writable { async _sinkCreate(id) { PromCollector.sessionCount.inc(); - let resolvedId = id; - let i = 0; + const resolvedId = id; let fd; const idealPath = path.resolve(cwd, this.dumpFolder, id); - let filePath = idealPath; + const filePath = idealPath; + const isReconnect = fs.existsSync(filePath); // If a client reconnects the same client id will be provided thus cases can occur where the previous dump // with the same id is still present on the disk, in order to avoid conflicts and states where multiple @@ -168,15 +189,7 @@ class DemuxSink extends Writable { // if the entry already exists because some other instance uploaded first, the same incremental approach needs // to be taken. while (!fd) { - try { - fd = await fsOpen(filePath, 'wx'); - } catch (err) { - if (err.code !== 'EEXIST') { - throw err; - } - resolvedId = `${id}_${++i}`; - filePath = path.resolve(cwd, this.dumpFolder, resolvedId); - } + fd = await fsOpen(filePath, 'a'); } this.log.info('[Demux] open-sink id: %s; path %s; connection: %o', id, filePath, this.connectionInfo); @@ -196,15 +209,23 @@ class DemuxSink extends Writable { this.sinkMap.set(id, sinkData); sink.on('error', error => this.log.error('[Demux] sink on error id: ', id, ' error:', error)); + let identity; + + if (isReconnect) { + identity = await this._getIdentityFromFile(sinkData.id); + } // The close event should be emitted both on error and happy flow. - sink.on('close', this._handleSinkClose.bind(this, id)); + sink.on('close', this._handleSinkClose.bind(this, id, identity)); - // Initialize the dump file by adding the connection metadata at the beginning. This data is usually used - // by visualizer tools for identifying the originating client (browser, jvb or other). - this._sinkWrite( + if (!isReconnect) { + // Initialize the dump file by adding the connection metadata at the beginning. This data is usually used + // by visualizer tools for identifying the originating client (browser, jvb or other). + this._sinkWrite( sink, - JSON.stringify([ 'connectionInfo', null, JSON.stringify(this.connectionInfo), Date.now() ])); + JSON.stringify([ 'connectionInfo', + null, JSON.stringify(this.connectionInfo), Date.now() ])); + } return sinkData; } @@ -215,8 +236,7 @@ class DemuxSink extends Writable { * @param {Object} sinkData - Current sink metadata * @param {Object} data - New metadata. */ - _sinkUpdateMetadata(sinkData, data) { - + async _sinkUpdateMetadata(sinkData, data) { let metadata; // Browser clients will send identity data as an array so we need to extract the element that contains @@ -227,14 +247,38 @@ class DemuxSink extends Writable { metadata = data; } + const meta = sinkData.meta; + // A first level update of the properties will suffice. - sinkData.meta = { ...sinkData.meta, - ...metadata }; + sinkData.meta = this._updateMeta(meta, metadata); // We expect metadata to be objects thus we need to stringify them before writing to the sink. this._sinkWrite(sinkData.sink, JSON.stringify(data)); } + /** + * + * @param {*} meta + * @param {*} metadata + * @returns + */ + _updateMeta(meta, metadata) { + return { + ...meta, + ...metadata + }; + } + + /** + * Getting identity from file in case of reconnect. + */ + async _getIdentityFromFile(fname) { + const filePath = utils.getDumpPath(this.tempPath, fname); + const { identity = '' } = await fileStore.getObjectsByKeys(filePath, [ 'identity' ]); + + return identity; + } + /** * Self explanatory. * @@ -265,6 +309,45 @@ class DemuxSink extends Writable { } } + /** + * Validates first if a previously connected sessionId's data has been processed + * and checks if there is no missing sequence number + * + * @param {*} statsSessionId + * @param {*} sequenceNumber + * @param {*} lastSequenceNumber + */ + _validateSequenceNumber(statsSessionId, sequenceNumber, lastSequenceNumber) { + if ((sequenceNumber - lastSequenceNumber > 1) + && !fs.existsSync(utils.getDumpPath(this.tempPath, statsSessionId))) { + PromCollector.dataIsAlreadyProcessedCount.inc(); + throw new Error(`[Demux] Session reconnected but file was already processed! sessionId: ${statsSessionId}`); + } + + if (sequenceNumber - this.lastSequenceNumber > 1) { + this.log.error(`[Demux] sequence number is missing! + sessionId: ${statsSessionId} + sequenceNumber: ${sequenceNumber} + lastSequenceNumber: ${this.lastSequenceNumber}` + ); + PromCollector.missingSequenceNumberCount.inc(); + } + } + + /** + * + * @param {*} data + * @returns {RequestData} + */ + _toRequestData(data) { + const jsonData = Array.isArray(data) ? data : JSON.parse(data); + const sequenceNumber = jsonData[4]; + const timestamp = jsonData[3]; + + return new RequestData({ timestamp, + sequenceNumber }); + } + /** * Handle API requests. * @@ -272,11 +355,21 @@ class DemuxSink extends Writable { */ async _handleRequest(request) { this._requestPrecondition(request); - PromCollector.requestSizeBytes.observe(sizeof(request)); const { statsSessionId, type, data } = request; + // save the last sequence number to notify the frontend + if (data) { + const requestData = this._toRequestData(data); + + this._validateSequenceNumber(statsSessionId, requestData.sequenceNumber, this.lastSequenceNumber); + + this.lastTimestamp = requestData.timestamp; + this.lastSequenceNumber = requestData.sequenceNumber; + } + + // If this is the first request coming from this client id ,create a new sink (file write stream in this case) // and it's associated metadata. // In case of reconnects the incremental sink naming convention described in _sinkCreate @@ -295,6 +388,8 @@ class DemuxSink extends Writable { // Subsequent operations will be taken by services in the upper level, like upload to store and persist // metadata do a db. case 'close': + this.log.info('[Demux] sink closed'); + return this._sinkClose(sinkData); // Identity requests will update the local metadata and also write it to the sink. diff --git a/src/metrics/PromCollector.js b/src/metrics/PromCollector.js index de396e9a..ba34eb62 100644 --- a/src/metrics/PromCollector.js +++ b/src/metrics/PromCollector.js @@ -159,6 +159,22 @@ const PromCollector = { percentiles: [ 0.1, 0.25, 0.5, 0.75, 0.9 ] }), + missingSequenceNumberCount: new prom.Counter({ + name: 'rtcstats_missing_sequence_number_count', + help: 'number of total number of missing sequence numbers' + }), + + + dataIsAlreadyProcessedCount: new prom.Counter({ + name: 'rtcstats_data_already_processed_count', + help: 'date already processed but the client is reconnected with the same sessionid' + }), + + clientReconnectedCount: new prom.Counter({ + name: 'rtcstats_client_reconnected_count', + help: 'Every time a client has been reconnected' + }), + metrics: () => prom.register.metrics(), collectDefaultMetrics: () => prom.collectDefaultMetrics(), diff --git a/src/store/file.js b/src/store/file.js new file mode 100644 index 00000000..2f7b43fb --- /dev/null +++ b/src/store/file.js @@ -0,0 +1,58 @@ +const fs = require('fs'); +const readline = require('readline'); +const Stream = require('stream'); + +exports.getLastLine = (fileName, minLength) => { + const inStream = fs.createReadStream(fileName); + const outStream = new Stream(); + + return new Promise((resolve, reject) => { + const rl = readline.createInterface(inStream, outStream); + + let lastLine = ''; + + rl.on('line', line => { + if (line.length >= minLength) { + lastLine = line; + } + }); + + rl.on('error', reject); + + rl.on('close', () => { + resolve(lastLine); + }); + }); +}; + +exports.getObjectsByKeys = (fileName, keys) => { + const inStream = fs.createReadStream(fileName); + const outStream = new Stream(); + const response = {}; + + return new Promise((resolve, reject) => { + const rl = readline.createInterface(inStream, outStream); + + rl.on('line', line => { + if (line !== '') { + const jsonLine = JSON.parse(line); + const [ type,, obj ] = jsonLine; + const typeIndex = keys.indexOf(type); + + if (typeIndex >= 0 && obj !== null) { + keys.splice(typeIndex, 1); + response[type] = obj; + } + if (keys.length === 0) { + rl.close(); + } + } + }); + + rl.on('close', () => { + resolve(response); + }); + + rl.on('error', reject); + }); +}; diff --git a/src/test/client.js b/src/test/client.js index 519a80a5..c7e95413 100644 --- a/src/test/client.js +++ b/src/test/client.js @@ -30,6 +30,8 @@ const ProtocolV = Object.freeze({ STANDARD: '3_STANDARD' }); +const DisconnectLineMarker = '--disconnect--'; + /** * */ @@ -38,7 +40,7 @@ class RtcstatsConnection extends EventEmitter { * * @param {*} param0 */ - constructor({ id, serverUrl, dumpPath, readDelay = 1000, wsOptions, protocolV }) { + constructor({ id, serverUrl, dumpPath, readDelay = 1000, wsOptions, protocolV, statsSessionId }) { super(); this.id = id; this.dumpPath = dumpPath; @@ -46,7 +48,9 @@ class RtcstatsConnection extends EventEmitter { this.wsOptions = wsOptions; this.readDelay = readDelay; this.protocolV = protocolV; - this.statsSessionId = uuidV4(); + this.statsSessionId = statsSessionId; + this.lastLine = 0; + this.disconnected = false; this._createIdentityData(); } @@ -71,6 +75,7 @@ class RtcstatsConnection extends EventEmitter { connect() { this.startWSOpen = new Date(); this.ws = new WebSocket(this.serverUrl, this.protocolV, this.wsOptions); + this.ws.on('open', this._open); this.ws.on('close', this._close); this.ws.on('error', this._error); @@ -86,7 +91,8 @@ class RtcstatsConnection extends EventEmitter { applicationName: 'Integration Test', confID: `192.168.1.1/conf-${this.statsSessionId}`, displayName: `test-${this.statsSessionId}`, - meetingUniqueId: uuidV4() + meetingUniqueId: uuidV4(), + statsSessionId: this.statsSessionId }; } @@ -136,24 +142,43 @@ class RtcstatsConnection extends EventEmitter { * */ _open = () => { - const endWSOpen = new Date() - this.startWSOpen; + this.disconnected = false; - logger.info(`Connected ws ${this.id} setup time ${endWSOpen}`); + const endWSOpen = new Date() - this.startWSOpen; - this._sendIdentity(); + if (this.lastLine === 0) { + logger.info(`Connected ws ${this.id} setup time ${endWSOpen}`); + this._sendIdentity(); + } else { + logger.info(`Reconnected ws ${this.id} setup time ${endWSOpen}`); + } this.lineReader = new LineByLine(this.dumpPath); + let lineNumber = 0; this.lineReader.on('line', line => { - this._sendStats(line); + if (((lineNumber > this.lastLine) && !this.disconnected) + || lineNumber === 0) { + if (line === DisconnectLineMarker) { + this.disconnected = true; + this.lastLine = lineNumber; + this._disconnect(); + this.lineReader.close(); + } else { + this._sendStats(line); + } + } + lineNumber++; }); this.lineReader.on('end', () => { - this.ws.close(); + if (!this.disconnected) { + this.ws.close(); + } }); - this.lineReader.on('error', err => { - logger.error('LineReader error:', err); + this.lineReader.on('error', e => { + logger.error(e); }); }; @@ -164,6 +189,14 @@ class RtcstatsConnection extends EventEmitter { this.emit('finished', { id: this.id }); }; + _disconnect = () => { + const closedAfter = new Date() - this.startWSOpen; + + this.ws.close(); + logger.info(`Disconnected ws ${this.id} in ${closedAfter}`); + this.emit('disconnect', { id: this.id }); + }; + _error = e => { const errorAfter = new Date() - this.startWSOpen; @@ -183,6 +216,7 @@ class TestCheckRouter { */ constructor(appServer) { this.testCheckMap = {}; + this.disconnected = false; appServer.workerPool.on(ResponseType.DONE, body => { this.routeDoneResponse(body); @@ -213,6 +247,7 @@ class TestCheckRouter { routeDoneResponse(body) { this.checkResponseFormat(body); this.testCheckMap[body.dumpInfo.clientId].checkDoneResponse(body); + logger.info('routeDoneResponse'); } /** @@ -226,7 +261,7 @@ class TestCheckRouter { /** * - * @param {]} body + * @param {*} body */ routeMetricsResponse(body) { this.checkResponseFormat(body); @@ -251,10 +286,11 @@ class TestCheckRouter { * @param {*} server */ function checkTestCompletion(appServer) { - if (appServer.PromCollector.processed.get().values[0].value === 6) { + + if (appServer.PromCollector.processed.get().values[0].value === 7) { appServer.stop(); } else { - setTimeout(checkTestCompletion, 4000, appServer); + setTimeout(checkTestCompletion, 8000, appServer); } } @@ -264,8 +300,13 @@ function checkTestCompletion(appServer) { * @param {*} resultPath */ function simulateConnection(dumpPath, resultPath, ua, protocolV) { + this.disconnected = false; + const resultString = fs.readFileSync(resultPath); + const resultList = JSON.parse(resultString); + const resultTemplate = resultList.shift(); + const statsSessionId = uuidV4(); const wsOptions = { headers: { @@ -276,26 +317,24 @@ function simulateConnection(dumpPath, resultPath, ua, protocolV) { const rtcstatsWsOptions = { id: dumpPath, - serverUrl: 'ws://localhost:3000/', + serverUrl: `ws://localhost:3000/?statsSessionId=${statsSessionId}`, dumpPath, readDelay: 1, wsOptions, - protocolV + protocolV, + statsSessionId }; const connection = new RtcstatsConnection(rtcstatsWsOptions); - const statsSessionId = connection.getStatsSessionId(); - const identityData = connection.getIdentityData(); + const identityData = connection.getIdentityData(); testCheckRouter.attachTest({ statsSessionId, checkDoneResponse: body => { - logger.info('[TEST] Handling DONE event with statsSessionId %j, body %j', - body.dumpInfo.clientId, body); - const parsedBody = JSON.parse(JSON.stringify(body)); - const resultTemplate = resultList.shift(); + + resultList.shift(); resultTemplate.dumpInfo.clientId = statsSessionId; resultTemplate.dumpInfo.userId = identityData.displayName; @@ -319,8 +358,7 @@ function simulateConnection(dumpPath, resultPath, ua, protocolV) { assert.deepStrictEqual(parsedBody, resultTemplate); }, checkErrorResponse: body => { - logger.info('[TEST] Handling ERROR event with body %o', body); - throw Error(`[TEST] Processing failed with: ${JSON.stringify(body)}`); + throw Error(`[TEST] Processing failed with:| ${JSON.stringify(body)} |`); }, checkMetricsResponse: body => { logger.info('[TEST] Handling METRICS event with body %j', body); @@ -330,6 +368,14 @@ function simulateConnection(dumpPath, resultPath, ua, protocolV) { }); connection.connect(); + connection.on('disconnect', () => { + this.disconnected = true; + + // we need to wait a little bit before reconnecting. + setTimeout(() => { + connection.connect(); + }, 500); + }); } /** @@ -338,6 +384,13 @@ function simulateConnection(dumpPath, resultPath, ua, protocolV) { function runTest() { testCheckRouter = new TestCheckRouter(server); + simulateConnection( + './src/test/dumps/google-standard-stats-p2p-reconnect', + './src/test/jest/results/google-standard-stats-p2p-result.json', + BrowserUASamples.CHROME, + ProtocolV.STANDARD + ); + simulateConnection( './src/test/dumps/google-standard-stats-p2p', './src/test/jest/results/google-standard-stats-p2p-result.json', @@ -381,6 +434,6 @@ function runTest() { ); } -setTimeout(runTest, 2000); +setTimeout(runTest, 6000); checkTestCompletion(server); diff --git a/src/test/dumps/google-standard-stats-p2p-reconnect b/src/test/dumps/google-standard-stats-p2p-reconnect new file mode 100644 index 00000000..340119c6 --- /dev/null +++ b/src/test/dumps/google-standard-stats-p2p-reconnect @@ -0,0 +1,230 @@ +["navigator.mediaDevices.getUserMedia",null,{"video":{"height":{"ideal":720,"max":720,"min":180},"width":{"ideal":1280,"max":1280,"min":320},"facingMode":"user"},"audio":{"optional":[{},{"echoCancellation":true},{"googEchoCancellation":true},{"googAutoGainControl":true},{"googNoiseSuppression":true},{"googHighpassFilter":true},{"googNoiseSuppression2":true},{"googEchoCancellation2":true},{"googAutoGainControl2":true}]}},1605197564448,1] +["navigator.mediaDevices.getUserMediaOnSuccess",null,{"id":"63EIyhPkYIuxCdrcM1M3hrP7KbXT3P0E6cyh","tracks":[{"id":"c9a9984e-3ac8-41e5-bf66-1f4f7098f230","kind":"audio","label":"Default - Headset Microphone (Razer Audio Controller - Chat) (1532:0520)","enabled":true,"muted":false,"readyState":"live"},{"id":"30bb2010-3c2e-4509-a5d6-6fc4d00257d2","kind":"video","label":"Microsoft® LifeCam HD-3000 (045e:0779)","enabled":true,"muted":false,"readyState":"live"}]},1605197565293,2] +["navigator.mediaDevices.getUserMedia",null,{"video":false,"audio":{"optional":[{"sourceId":"default"},{"echoCancellation":true},{"googEchoCancellation":true},{"googAutoGainControl":true},{"googNoiseSuppression":true},{"googHighpassFilter":true},{"googNoiseSuppression2":true},{"googEchoCancellation2":true},{"googAutoGainControl2":true}]}},1605197570202,3] +["navigator.mediaDevices.getUserMediaOnSuccess",null,{"id":"7QF4CMYSOiwyyAWNtiDXHOP7RreqJBzbPgF8","tracks":[{"id":"1a104e5c-47bd-49e8-8ae4-c1c62db5cb14","kind":"audio","label":"Default - Headset Microphone (Razer Audio Controller - Chat) (1532:0520)","enabled":true,"muted":false,"readyState":"live"}]},1605197570226,4] +["identity",null,{"sessionId":1605197553463,"deviceId":"Z4pw0CT9udBLc9rSQ4ytH5","userId":null,"hosts":{"domain":"andreig2.jitsi.net","muc":"conference.andreig2.jitsi.net","focus":"focus.andreig2.jitsi.net"},"disableSimulcast":false,"enableRemb":true,"enableTcc":true,"resolution":720,"constraints":{"video":{"height":{"ideal":720,"max":720,"min":180},"width":{"ideal":1280,"max":1280,"min":320}}},"analytics":{"amplitudeAPPKey":"ed970d1a3f758f17bafd3965ba68ccc3","rtcstatsEnabled":true,"rtcstatsEndpoint":"wss://192.168.1.234:3000","rtcstatsPollInterval":2000,"whiteListedEvents":["conference.joined","page.reload.scheduled","rejoined","transport.stats"]},"enableP2P":true,"p2p":{"enabled":true,"preferredCodec":"h264","preferH264":true,"disableH264":false,"useStunTurn":true},"useStunTurn":true,"useTurnUdp":false,"bosh":"//andreig2.jitsi.net/http-bind","websocket":"wss://andreig2.jitsi.net/xmpp-websocket","clientNode":"http://jitsi.org/jitsimeet","desktopSharing":"ext","chromeExtensionId":"diibjkoicjeejcmhdnailmkgecihlobk","desktopSharingSources":["screen","window"],"googleApiApplicationClientID":"39065779381-bbhnkrgibtf4p0j9ne5vsq7bm49t1tlf.apps.googleusercontent.com","microsoftApiApplicationClientID":"00000000-0000-0000-0000-000040240063","enableCalendarIntegration":true,"desktopSharingChromeExtId":"diibjkoicjeejcmhdnailmkgecihlobk","desktopSharingChromeSources":["screen","window","tab"],"useRoomAsSharedDocumentName":false,"enableLipSync":false,"disableRtx":false,"enableScreenshotCapture":false,"openBridgeChannel":"websocket","channelLastN":-1,"lastNLimits":{"5":20,"30":15,"50":10,"70":5,"90":2},"videoQuality":{"maxBitratesVideo":{"low":200000,"standard":500000,"high":1500000}},"startBitrate":"800","disableAudioLevels":false,"disableSuspendVideo":true,"stereo":false,"forceJVB121Ratio":-1,"enableTalkWhileMuted":true,"enableNoAudioDetection":true,"enableNoisyMicDetection":true,"enableClosePage":true,"disableLocalVideoFlip":false,"hiddenDomain":"recorder.andreig2.jitsi.net","longTasksStatsInterval":10000,"transcribingEnabled":true,"enableRecording":true,"liveStreamingEnabled":true,"fileRecordingsEnabled":true,"fileRecordingsServiceEnabled":true,"fileRecordingsServiceSharingEnabled":true,"requireDisplayName":false,"enableWelcomePage":true,"isBrand":false,"dialInNumbersUrl":"https://api-dev.jitsi.net/phoneNumberList","dialInConfCodeUrl":"https://api-dev.jitsi.net/conferenceMapper","dialOutCodesUrl":"https://api-dev.jitsi.net/countrycodes","dialOutAuthUrl":"https://api-dev.jitsi.net/authorizephone","peopleSearchUrl":"https://api-dev.jitsi.net/directorySearch","inviteServiceUrl":"https://api-dev.jitsi.net/conferenceInvite","inviteServiceCallFlowsUrl":"https://api-dev.jitsi.net/conferenceinvitecallflows","guestDialOutUrl":"https://api-vo-pilot.jitsi.net/voxadapter/v1/guest/conference/call_in","guestDialOutStatusUrl":"https://api-vo-pilot.jitsi.net/voxadapter/v1/guest/conference/call_in/status","peopleSearchQueryTypes":["user","conferenceRooms"],"startAudioMuted":9,"startVideoMuted":9,"enableUserRolesBasedOnToken":true,"_8x8VideoMeetingsUrl":"https://app-pilot.8x8.vc","_screenshotHistoryUrl":"https://api-vo-pilot.jitsi.net/vo-content-sharing-history/v1/file-metadata","enableLayerSuspension":true,"feedbackPercentage":100,"deploymentUrls":{"downloadAppsUrl":"https://download.8x8.vc"},"prejoinPageEnabled":true,"enableInsecureRoomNameWarning":false,"hepopAnalyticsUrl":"","hepopAnalyticsEvent":{"product":"lib-jitsi-meet","subproduct":"lonely","name":"jitsi.page.load.failed","action":"page.load.failed","actionSubject":"page.load","type":"page.load.failed","source":"page.load","attributes":{"type":"operational","source":"page.load"},"server":"andreig2.jitsi.net"},"deploymentInfo":{"environment":"lonely","envType":"dev","releaseNumber":"","shard":"hcv-lonely-andreig2","region":"eu-west-1","userRegion":"","crossRegion":0},"e2eping":{"pingInterval":-1},"abTesting":{},"testing":{"capScreenshareBitrate":1,"octo":{"probability":0}},"applicationName":"Jitsi Meet","confID":"192.168.1.234:8080/fullmechanismslastimpolitely","displayName":"andrei-win-1"},1605197570279,5] +["create","PC_0",{"iceServers":[{"urls":"stun:all-turnrelay.jitsi.net:443"},{"urls":"turn:all-turnrelay.jitsi.net:443","username":"1605283971"},{"urls":"turns:all-turnrelay.jitsi.net:443?transport=tcp","username":"1605283971"}],"sdpSemantics":"plan-b","bundlePolicy":"max-bundle","browserType":"webkit"},1605197599683,6] +["constraints","PC_0",{"optional":[{"googHighStartBitrate":0},{"googPayloadPadding":true},{"googScreencastMinBitrate":100},{"googCpuOveruseDetection":true},{"googCpuOveruseEncodeUsage":true},{"googCpuUnderuseThreshold":55},{"googCpuOveruseThreshold":85},{"rtcStatsSFUP2P":true}]},1605197599683,7] +["addStream","PC_0","cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 audio:c9a9984e-3ac8-41e5-bf66-1f4f7098f230",1605197599700,8] +["addStream","PC_0","763f09bf-2814-4ed8-98ec-21797d9e940c video:30bb2010-3c2e-4509-a5d6-6fc4d00257d2",1605197599701,9] +["createOffer","PC_0",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197599702] +["create","PC_1",{"iceServers":[{"urls":"turns:all-turnrelay.jitsi.net:443?transport=tcp","username":"1605283971"}],"sdpSemantics":"plan-b","bundlePolicy":"max-bundle","browserType":"webkit"},1605197599743] +["constraints","PC_1",{"optional":[{"googHighStartBitrate":0},{"googPayloadPadding":true},{"googScreencastMinBitrate":100},{"googCpuOveruseDetection":true},{"googCpuOveruseEncodeUsage":true},{"googCpuUnderuseThreshold":55},{"googCpuOveruseThreshold":85},{"rtcStatsSFUP2P":false}]},1605197599743] +["onnegotiationneeded","PC_0",null,1605197599747] +["onnegotiationneeded","PC_0",null,1605197599748] +["createOfferOnSuccess","PC_0",{"type":"offer","sdp":"v=0\r\no=- 3150697902537714209 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=ice-options:trickle\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=setup:actpass\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2364213263 cname:YEPLF2RCoRIB86l0\r\na=ssrc:2364213263 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2364213263 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2364213263 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 98 99 100 101 102 121 127 120 125 107 108 109 124 119 123 118 114 115 116\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=ice-options:trickle\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=setup:actpass\r\na=mid:video\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=sendrecv\r\na=rtcp-mux\r\na=rtcp-rsize\r\na=rtpmap:96 VP8/90000\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtpmap:97 rtx/90000\r\na=fmtp:97 apt=96\r\na=rtpmap:98 VP9/90000\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=fmtp:98 profile-id=0\r\na=rtpmap:99 rtx/90000\r\na=fmtp:99 apt=98\r\na=rtpmap:100 VP9/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=fmtp:100 profile-id=2\r\na=rtpmap:101 rtx/90000\r\na=fmtp:101 apt=100\r\na=rtpmap:102 H264/90000\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f\r\na=rtpmap:121 rtx/90000\r\na=fmtp:121 apt=102\r\na=rtpmap:127 H264/90000\r\na=rtcp-fb:127 goog-remb\r\na=rtcp-fb:127 transport-cc\r\na=rtcp-fb:127 ccm fir\r\na=rtcp-fb:127 nack\r\na=rtcp-fb:127 nack pli\r\na=fmtp:127 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f\r\na=rtpmap:120 rtx/90000\r\na=fmtp:120 apt=127\r\na=rtpmap:125 H264/90000\r\na=rtcp-fb:125 goog-remb\r\na=rtcp-fb:125 transport-cc\r\na=rtcp-fb:125 ccm fir\r\na=rtcp-fb:125 nack\r\na=rtcp-fb:125 nack pli\r\na=fmtp:125 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=rtpmap:107 rtx/90000\r\na=fmtp:107 apt=125\r\na=rtpmap:108 H264/90000\r\na=rtcp-fb:108 goog-remb\r\na=rtcp-fb:108 transport-cc\r\na=rtcp-fb:108 ccm fir\r\na=rtcp-fb:108 nack\r\na=rtcp-fb:108 nack pli\r\na=fmtp:108 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f\r\na=rtpmap:109 rtx/90000\r\na=fmtp:109 apt=108\r\na=rtpmap:124 H264/90000\r\na=rtcp-fb:124 goog-remb\r\na=rtcp-fb:124 transport-cc\r\na=rtcp-fb:124 ccm fir\r\na=rtcp-fb:124 nack\r\na=rtcp-fb:124 nack pli\r\na=fmtp:124 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d001f\r\na=rtpmap:119 rtx/90000\r\na=fmtp:119 apt=124\r\na=rtpmap:123 H264/90000\r\na=rtcp-fb:123 goog-remb\r\na=rtcp-fb:123 transport-cc\r\na=rtcp-fb:123 ccm fir\r\na=rtcp-fb:123 nack\r\na=rtcp-fb:123 nack pli\r\na=fmtp:123 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=64001f\r\na=rtpmap:118 rtx/90000\r\na=fmtp:118 apt=123\r\na=rtpmap:114 red/90000\r\na=rtpmap:115 rtx/90000\r\na=fmtp:115 apt=114\r\na=rtpmap:116 ulpfec/90000\r\na=ssrc-group:FID 9891702 1118143515\r\na=ssrc:9891702 cname:YEPLF2RCoRIB86l0\r\na=ssrc:9891702 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:9891702 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:9891702 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 cname:YEPLF2RCoRIB86l0\r\na=ssrc:1118143515 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1118143515 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197599749] +["setLocalDescription","PC_0",{"type":"offer","sdp":"v=0\r\no=- 3150697902537714209 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=ice-options:trickle\r\na=ssrc:2364213263 cname:YEPLF2RCoRIB86l0\r\na=ssrc:2364213263 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2364213263 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2364213263 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 UDP/TLS/RTP/SAVPF 102 127 125 108 124 123 96 97 98 99 100 101 121 120 107 109 119 118 114 115 116\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:96 VP8/90000\r\na=rtpmap:97 rtx/90000\r\na=rtpmap:98 VP9/90000\r\na=rtpmap:99 rtx/90000\r\na=rtpmap:100 VP9/90000\r\na=rtpmap:101 rtx/90000\r\na=rtpmap:102 H264/90000\r\na=rtpmap:121 rtx/90000\r\na=rtpmap:127 H264/90000\r\na=rtpmap:120 rtx/90000\r\na=rtpmap:125 H264/90000\r\na=rtpmap:107 rtx/90000\r\na=rtpmap:108 H264/90000\r\na=rtpmap:109 rtx/90000\r\na=rtpmap:124 H264/90000\r\na=rtpmap:119 rtx/90000\r\na=rtpmap:123 H264/90000\r\na=rtpmap:118 rtx/90000\r\na=rtpmap:114 red/90000\r\na=rtpmap:115 rtx/90000\r\na=rtpmap:116 ulpfec/90000\r\na=fmtp:97 apt=96\r\na=fmtp:98 profile-id=0\r\na=fmtp:99 apt=98\r\na=fmtp:100 profile-id=2\r\na=fmtp:101 apt=100\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f\r\na=fmtp:121 apt=102\r\na=fmtp:127 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f\r\na=fmtp:120 apt=127\r\na=fmtp:125 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=fmtp:107 apt=125\r\na=fmtp:108 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f\r\na=fmtp:109 apt=108\r\na=fmtp:124 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d001f\r\na=fmtp:119 apt=124\r\na=fmtp:123 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=64001f\r\na=fmtp:118 apt=123\r\na=fmtp:115 apt=114\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=rtcp-fb:127 goog-remb\r\na=rtcp-fb:127 transport-cc\r\na=rtcp-fb:127 ccm fir\r\na=rtcp-fb:127 nack\r\na=rtcp-fb:127 nack pli\r\na=rtcp-fb:125 goog-remb\r\na=rtcp-fb:125 transport-cc\r\na=rtcp-fb:125 ccm fir\r\na=rtcp-fb:125 nack\r\na=rtcp-fb:125 nack pli\r\na=rtcp-fb:108 goog-remb\r\na=rtcp-fb:108 transport-cc\r\na=rtcp-fb:108 ccm fir\r\na=rtcp-fb:108 nack\r\na=rtcp-fb:108 nack pli\r\na=rtcp-fb:124 goog-remb\r\na=rtcp-fb:124 transport-cc\r\na=rtcp-fb:124 ccm fir\r\na=rtcp-fb:124 nack\r\na=rtcp-fb:124 nack pli\r\na=rtcp-fb:123 goog-remb\r\na=rtcp-fb:123 transport-cc\r\na=rtcp-fb:123 ccm fir\r\na=rtcp-fb:123 nack\r\na=rtcp-fb:123 nack pli\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=ice-options:trickle\r\na=ssrc:9891702 cname:YEPLF2RCoRIB86l0\r\na=ssrc:9891702 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:9891702 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:9891702 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 cname:YEPLF2RCoRIB86l0\r\na=ssrc:1118143515 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1118143515 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 9891702 1118143515\r\na=rtcp-mux\r\na=rtcp-rsize\r\n"},1605197599759] +["addStream","PC_1","cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 audio:c9a9984e-3ac8-41e5-bf66-1f4f7098f230",1605197599763] +["addStream","PC_1","763f09bf-2814-4ed8-98ec-21797d9e940c video:30bb2010-3c2e-4509-a5d6-6fc4d00257d2",1605197599764] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\nm=audio 1 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10; useinbandfec=1\r\na=rtcp:1 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=rtcp-mux\r\nm=video 1 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:1 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197599770] +["onsignalingstatechange","PC_0","have-local-offer",1605197599774] +["setLocalDescriptionOnSuccess","PC_0",null,1605197599775] +["onnegotiationneeded","PC_1",null,1605197599940] +["onnegotiationneeded","PC_1",null,1605197599940] +["onsignalingstatechange","PC_1","have-remote-offer",1605197599956] +["onicegatheringstatechange","PC_0","gathering",1605197599956] +["onicecandidate","PC_0",{"candidate":"candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 ufrag N/ku network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197599956] +["onicecandidate","PC_0",{"candidate":"candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 ufrag N/ku network-id 2","sdpMid":"audio","sdpMLineIndex":0},1605197599960] +["onicecandidate","PC_0",{"candidate":"candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 ufrag N/ku network-id 3","sdpMid":"audio","sdpMLineIndex":0},1605197599965] +["onaddstream","PC_1","mixedmslabel audio:mixedlabelaudio0,video:mixedlabelvideo0",1605197599992] +["ontrack","PC_1","audio:mixedlabelaudio0 stream:mixedmslabel",1605197599993] +["ontrack","PC_1","video:mixedlabelvideo0 stream:mixedmslabel",1605197599993] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197599993] +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197599994] +["onicecandidate","PC_0",{"candidate":"candidate:4096217215 1 udp 2122260223 192.168.1.154 49911 typ host generation 0 ufrag N/ku network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600014] +["onicecandidate","PC_0",{"candidate":"candidate:1479382210 1 udp 2122194687 172.17.16.1 49912 typ host generation 0 ufrag N/ku network-id 2","sdpMid":"audio","sdpMLineIndex":0},1605197600016] +["onicecandidate","PC_0",{"candidate":"candidate:2999745851 1 udp 2122129151 192.168.56.1 49913 typ host generation 0 ufrag N/ku network-id 3","sdpMid":"audio","sdpMLineIndex":0},1605197600017] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 9 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197600024] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 9 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197600028] +["onsignalingstatechange","PC_1","stable",1605197600054] +["setLocalDescriptionOnSuccess","PC_1",null,1605197600054] +["onicegatheringstatechange","PC_1","gathering",1605197600065] +["oniceconnectionstatechange","PC_1","checking",1605197600067] +["onconnectionstatechange","PC_1","connecting",1605197600068] +["onicecandidate","PC_1",{"candidate":"candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 ufrag Blt1 network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600068] +["onicecandidate","PC_1",{"candidate":"candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 ufrag Blt1 network-id 2","sdpMid":"audio","sdpMLineIndex":0},1605197600071] +["onicecandidate","PC_1",{"candidate":"candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 ufrag Blt1 network-id 3","sdpMid":"audio","sdpMLineIndex":0},1605197600072] +["onicecandidate","PC_0",{"candidate":"candidate:1970230987 1 udp 1686052607 188.24.8.45 49911 typ srflx raddr 192.168.1.154 rport 49911 generation 0 ufrag N/ku network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600076] +["onicecandidate","PC_0",{"candidate":"candidate:2158490438 1 udp 41885695 3.122.28.43 62645 typ relay raddr 188.24.8.45 rport 49911 generation 0 ufrag N/ku network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600102] +["onicecandidate","PC_1",{"candidate":"candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 ufrag Blt1 network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600136] +["onicecandidate","PC_1",{"candidate":"candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 ufrag Blt1 network-id 2","sdpMid":"audio","sdpMLineIndex":0},1605197600138] +["onicecandidate","PC_1",{"candidate":"candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 ufrag Blt1 network-id 3","sdpMid":"audio","sdpMLineIndex":0},1605197600139] +["onicecandidate","PC_1",{"candidate":"candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 ufrag Blt1 network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600238] +["onicegatheringstatechange","PC_1","complete",1605197600239] +["onicecandidate","PC_1",null,1605197600239] +["onicecandidate","PC_0",{"candidate":"candidate:3501540035 1 udp 8331007 3.122.28.43 50071 typ relay raddr 188.24.8.45 rport 59096 generation 0 ufrag N/ku network-id 1","sdpMid":"audio","sdpMLineIndex":0},1605197600241] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS mixedmslabel\r\na=group:BUNDLE audio video\r\nm=audio 10000 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:2566963332 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2566963332 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=rtcp-mux\r\nm=video 10000 RTP/SAVPF 100 96\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1527498116 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:1527498116 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:2429519549 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2429519549 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc-group:FID 1527498116 2429519549\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197600284] +["onsignalingstatechange","PC_1","have-remote-offer",1605197600291] +["oniceconnectionstatechange","PC_1","connected",1605197600292] +["onaddstream","PC_1","c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 audio:ab82fe8b-0a35-4b70-974d-283617131b02-1",1605197600295] +["ontrack","PC_1","audio:ab82fe8b-0a35-4b70-974d-283617131b02-1 stream:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1",1605197600311] +["onaddstream","PC_1","8a4e8995-5250-4ffc-91d3-04287d760407-1 video:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1",1605197600311] +["ontrack","PC_1","video:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1 stream:8a4e8995-5250-4ffc-91d3-04287d760407-1",1605197600323] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197600323] +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197600324] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"type":"media-source","trackIdentifier":"c9a9984e-3ac8-41e5-bf66-1f4f7098f230","kind":"audio","audioLevel":0.00012207403790398877,"totalAudioEnergy":2.3843313168295175e-9,"totalSamplesDuration":0.26000000000000006},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0,"type":"certificate","fingerprint":"D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26","fingerprintAlgorithm":"sha-256","base64Certificate":"MIIBFzCBvaADAgECAgkApFVA0lWgpNgwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIwMTExMTE2MTMxOVoXDTIwMTIxMjE2MTMxOVowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEQN8/JKCVjvwWOd3/G8nhzBkgp2/yvH0pq6mc0p2uYt+wVyu4vL/qSeU+3Hu2Pkzp+xWLAuzELGoPigeseUFsejAKBggqhkjOPQQDAgNJADBGAiEAz1pE6cnq6pq3wO5Uz8FTBLljM9u0UGU7H+NmQq+2RncCIQCka9v/embN4mWrvtIMiX5hBeqYebhxdnLJHW/d3gmvtg=="},"RTCCodec_audio_Inbound_103":{"timestamp":0,"type":"codec","payloadType":103,"mimeType":"audio/ISAC","clockRate":16000,"channels":1},"RTCCodec_audio_Inbound_104":{"timestamp":0,"type":"codec","payloadType":104,"mimeType":"audio/ISAC","clockRate":32000,"channels":1},"RTCCodec_audio_Inbound_111":{"timestamp":0,"type":"codec","payloadType":111,"mimeType":"audio/opus","clockRate":48000,"channels":2,"sdpFmtpLine":"minptime=10;useinbandfec=1"},"RTCCodec_audio_Inbound_126":{"timestamp":0,"type":"codec","payloadType":126,"mimeType":"audio/telephone-event","clockRate":8000,"channels":1},"RTCCodec_audio_Outbound_103":{"timestamp":0,"type":"codec","payloadType":103,"mimeType":"audio/ISAC","clockRate":16000,"channels":1},"RTCCodec_audio_Outbound_104":{"timestamp":0,"type":"codec","payloadType":104,"mimeType":"audio/ISAC","clockRate":32000,"channels":1},"RTCCodec_audio_Outbound_111":{"timestamp":0,"type":"codec","payloadType":111,"mimeType":"audio/opus","clockRate":48000,"channels":2,"sdpFmtpLine":"minptime=10;useinbandfec=1"},"RTCCodec_audio_Outbound_126":{"timestamp":0,"type":"codec","payloadType":126,"mimeType":"audio/telephone-event","clockRate":8000,"channels":1},"RTCCodec_video_Inbound_100":{"timestamp":0,"type":"codec","payloadType":100,"mimeType":"video/VP8","clockRate":90000},"RTCCodec_video_Inbound_96":{"timestamp":0,"type":"codec","payloadType":96,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=100"},"RTCCodec_video_Outbound_100":{"timestamp":0,"type":"codec","payloadType":100,"mimeType":"video/VP8","clockRate":90000,"sdpFmtpLine":"x-google-start-bitrate=800"},"RTCCodec_video_Outbound_96":{"timestamp":0,"type":"codec","payloadType":96,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=100"},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_DAqSguio","remoteCandidateId":"RTCIceCandidate_RC8fROJw","state":"waiting","priority":7205771498369990000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_DAqSguio","remoteCandidateId":"RTCIceCandidate_tTnfsok5","state":"in-progress","priority":9114475305694659000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":1,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_MxIlELq+_RC8fROJw":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_MxIlELq+","remoteCandidateId":"RTCIceCandidate_RC8fROJw","state":"waiting","priority":35781405963195904,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_MxIlELq+_tTnfsok5":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_MxIlELq+","remoteCandidateId":"RTCIceCandidate_tTnfsok5","state":"failed","priority":35781406869159936,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_T9Sb2w4D","remoteCandidateId":"RTCIceCandidate_RC8fROJw","state":"succeeded","priority":7205771497833381000,"nominated":false,"writable":true,"bytesSent":159,"bytesReceived":0,"totalRoundTripTime":0.075,"currentRoundTripTime":0.075,"requestsReceived":0,"requestsSent":1,"responsesReceived":1,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_cDMDh8jn","remoteCandidateId":"RTCIceCandidate_RC8fROJw","state":"in-progress","priority":7205771498370121000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":1,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_cDMDh8jn","remoteCandidateId":"RTCIceCandidate_tTnfsok5","state":"in-progress","priority":9114756780671369000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":1,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_evmNlrJp","remoteCandidateId":"RTCIceCandidate_tTnfsok5","state":"in-progress","priority":9115038255648080000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":1,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidate_DAqSguio":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"192.168.56.1","port":60910,"protocol":"udp","candidateType":"host","priority":2122129151,"deleted":false},"RTCIceCandidate_MxIlELq+":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"3.122.28.43","port":58174,"protocol":"udp","relayProtocol":"tls","candidateType":"relay","priority":8331007,"deleted":false},"RTCIceCandidate_RC8fROJw":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"3.249.64.62","port":10000,"protocol":"udp","candidateType":"srflx","priority":1677724415,"deleted":false},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"188.24.8.45","port":60908,"protocol":"udp","candidateType":"prflx","priority":1853824767,"deleted":false},"RTCIceCandidate_cDMDh8jn":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"172.17.16.1","port":60909,"protocol":"udp","candidateType":"host","priority":2122194687,"deleted":false},"RTCIceCandidate_evmNlrJp":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"192.168.1.154","port":60908,"protocol":"udp","candidateType":"host","priority":2122260223,"deleted":false},"RTCIceCandidate_tTnfsok5":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"10.200.3.224","port":10000,"protocol":"udp","candidateType":"host","priority":2130706431,"deleted":false},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0,"type":"inbound-rtp","ssrc":1109381341,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_receiver_1","transportId":"RTCTransport_audio_1","packetsReceived":0,"fecPacketsReceived":0,"fecPacketsDiscarded":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"jitter":0,"jitterBufferDelay":0,"jitterBufferEmittedCount":0,"totalSamplesReceived":0,"concealedSamples":0,"silentConcealedSamples":0,"concealmentEvents":0,"insertedSamplesForDeceleration":0,"removedSamplesForAcceleration":0,"audioLevel":-1,"totalAudioEnergy":0,"totalSamplesDuration":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"type":"inbound-rtp","ssrc":2566963332,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_receiver_3","transportId":"RTCTransport_audio_1","packetsReceived":0,"fecPacketsReceived":0,"fecPacketsDiscarded":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"jitter":0,"jitterBufferDelay":0,"jitterBufferEmittedCount":0,"totalSamplesReceived":0,"concealedSamples":0,"silentConcealedSamples":0,"concealmentEvents":0,"insertedSamplesForDeceleration":0,"removedSamplesForAcceleration":0,"audioLevel":-1,"totalAudioEnergy":0,"totalSamplesDuration":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"type":"inbound-rtp","ssrc":1052990334,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_receiver_2","transportId":"RTCTransport_audio_1","firCount":0,"pliCount":0,"nackCount":0,"packetsReceived":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"framesReceived":0,"framesDecoded":0,"keyFramesDecoded":0,"framesDropped":0,"totalDecodeTime":0,"totalInterFrameDelay":0,"totalSquaredInterFrameDelay":0,"decoderImplementation":"unknown"},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"type":"inbound-rtp","ssrc":1527498116,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_receiver_4","transportId":"RTCTransport_audio_1","firCount":0,"pliCount":0,"nackCount":0,"packetsReceived":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"framesReceived":0,"framesDecoded":0,"keyFramesDecoded":0,"framesDropped":0,"totalDecodeTime":0,"totalInterFrameDelay":0,"totalSquaredInterFrameDelay":0,"decoderImplementation":"unknown"},"RTCMediaStreamTrack_receiver_1":{"timestamp":0,"type":"track","trackIdentifier":"mixedlabelaudio0","remoteSource":true,"ended":false,"detached":false,"kind":"audio","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"totalAudioEnergy":0,"totalSamplesReceived":0,"totalSamplesDuration":0,"concealedSamples":0,"silentConcealedSamples":0,"concealmentEvents":0,"insertedSamplesForDeceleration":0,"removedSamplesForAcceleration":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0,"type":"track","trackIdentifier":"mixedlabelvideo0","remoteSource":true,"ended":false,"detached":false,"kind":"video","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"framesReceived":0,"framesDecoded":0,"framesDropped":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"type":"track","trackIdentifier":"ab82fe8b-0a35-4b70-974d-283617131b02-1","remoteSource":true,"ended":false,"detached":false,"kind":"audio","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"totalAudioEnergy":0,"totalSamplesReceived":0,"totalSamplesDuration":0,"concealedSamples":0,"silentConcealedSamples":0,"concealmentEvents":0,"insertedSamplesForDeceleration":0,"removedSamplesForAcceleration":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"type":"track","trackIdentifier":"9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1","remoteSource":true,"ended":false,"detached":false,"kind":"video","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"framesReceived":0,"framesDecoded":0,"framesDropped":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0,"type":"track","trackIdentifier":"c9a9984e-3ac8-41e5-bf66-1f4f7098f230","mediaSourceId":"RTCAudioSource_3","remoteSource":false,"ended":false,"detached":false,"kind":"audio"},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"type":"track","trackIdentifier":"30bb2010-3c2e-4509-a5d6-6fc4d00257d2","mediaSourceId":"RTCVideoSource_4","remoteSource":false,"ended":false,"detached":false,"kind":"video","frameWidth":0,"frameHeight":0,"framesSent":0,"hugeFramesSent":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"type":"stream","streamIdentifier":"763f09bf-2814-4ed8-98ec-21797d9e940c","trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"type":"stream","streamIdentifier":"8a4e8995-5250-4ffc-91d3-04287d760407-1","trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"type":"stream","streamIdentifier":"c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1","trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"type":"stream","streamIdentifier":"cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081","trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"type":"stream","streamIdentifier":"mixedmslabel","trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"type":"outbound-rtp","ssrc":2545347749,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_sender_3","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Outbound_111","mediaSourceId":"RTCAudioSource_3","packetsSent":0,"retransmittedPacketsSent":0,"bytesSent":0,"headerBytesSent":0,"retransmittedBytesSent":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"type":"outbound-rtp","ssrc":3077306155,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_sender_4","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_100","firCount":0,"pliCount":0,"nackCount":0,"mediaSourceId":"RTCVideoSource_4","packetsSent":0,"retransmittedPacketsSent":0,"bytesSent":0,"headerBytesSent":0,"retransmittedBytesSent":0,"framesEncoded":0,"keyFramesEncoded":0,"totalEncodeTime":0,"totalEncodedBytesTarget":0,"framesSent":0,"hugeFramesSent":0,"totalPacketSendDelay":0,"qualityLimitationReason":"none","qualityLimitationResolutionChanges":0,"encoderImplementation":"unknown"},"RTCPeerConnection":{"timestamp":0,"type":"peer-connection","dataChannelsOpened":0,"dataChannelsClosed":0},"RTCTransport_audio_1":{"timestamp":0,"type":"transport","bytesSent":159,"packetsSent":1,"bytesReceived":0,"packetsReceived":0,"dtlsState":"connecting","selectedCandidatePairId":"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw","localCertificateId":"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26","selectedCandidatePairChanges":1},"RTCVideoSource_4":{"timestamp":0,"type":"media-source","trackIdentifier":"30bb2010-3c2e-4509-a5d6-6fc4d00257d2","kind":"video","width":1280,"height":720,"framesPerSecond":30},"timestamp":1605197600293},1605197600347] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 3 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197600381] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 3 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197600386] +["onsignalingstatechange","PC_1","stable",1605197600402] +["setLocalDescriptionOnSuccess","PC_1",null,1605197600402] +["onconnectionstatechange","PC_1","connected",1605197600470] +["oniceconnectionstatechange","PC_0","checking",1605197601238] +["onconnectionstatechange","PC_0","connecting",1605197601238] +["createOffer","PC_0",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197601428] +["createOfferOnSuccess","PC_0",{"type":"offer","sdp":"v=0\r\no=- 3150697902537714209 3 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 62645 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 49911 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 49912 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 49913 typ host generation 0 network-id 3\r\na=candidate:1970230987 1 udp 1686052607 188.24.8.45 49911 typ srflx raddr 192.168.1.154 rport 49911 generation 0 network-id 1\r\na=candidate:2158490438 1 udp 41885695 3.122.28.43 62645 typ relay raddr 188.24.8.45 rport 49911 generation 0 network-id 1\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 50071 typ relay raddr 188.24.8.45 rport 59096 generation 0 network-id 1\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=ice-options:trickle\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=setup:actpass\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2364213263 cname:YEPLF2RCoRIB86l0\r\na=ssrc:2364213263 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2364213263 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2364213263 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 UDP/TLS/RTP/SAVPF 102 127 125 108 124 123 96 97 98 99 100 101 121 120 107 109 119 118 114 115 116\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=ice-options:trickle\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=setup:actpass\r\na=mid:video\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=sendrecv\r\na=rtcp-mux\r\na=rtcp-rsize\r\na=rtpmap:102 H264/90000\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f\r\na=rtpmap:127 H264/90000\r\na=rtcp-fb:127 goog-remb\r\na=rtcp-fb:127 transport-cc\r\na=rtcp-fb:127 ccm fir\r\na=rtcp-fb:127 nack\r\na=rtcp-fb:127 nack pli\r\na=fmtp:127 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f\r\na=rtpmap:125 H264/90000\r\na=rtcp-fb:125 goog-remb\r\na=rtcp-fb:125 transport-cc\r\na=rtcp-fb:125 ccm fir\r\na=rtcp-fb:125 nack\r\na=rtcp-fb:125 nack pli\r\na=fmtp:125 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=rtpmap:108 H264/90000\r\na=rtcp-fb:108 goog-remb\r\na=rtcp-fb:108 transport-cc\r\na=rtcp-fb:108 ccm fir\r\na=rtcp-fb:108 nack\r\na=rtcp-fb:108 nack pli\r\na=fmtp:108 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f\r\na=rtpmap:124 H264/90000\r\na=rtcp-fb:124 goog-remb\r\na=rtcp-fb:124 transport-cc\r\na=rtcp-fb:124 ccm fir\r\na=rtcp-fb:124 nack\r\na=rtcp-fb:124 nack pli\r\na=fmtp:124 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d001f\r\na=rtpmap:123 H264/90000\r\na=rtcp-fb:123 goog-remb\r\na=rtcp-fb:123 transport-cc\r\na=rtcp-fb:123 ccm fir\r\na=rtcp-fb:123 nack\r\na=rtcp-fb:123 nack pli\r\na=fmtp:123 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=64001f\r\na=rtpmap:96 VP8/90000\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtpmap:97 rtx/90000\r\na=fmtp:97 apt=96\r\na=rtpmap:98 VP9/90000\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=fmtp:98 profile-id=0\r\na=rtpmap:99 rtx/90000\r\na=fmtp:99 apt=98\r\na=rtpmap:100 VP9/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=fmtp:100 profile-id=2\r\na=rtpmap:101 rtx/90000\r\na=fmtp:101 apt=100\r\na=rtpmap:121 rtx/90000\r\na=fmtp:121 apt=102\r\na=rtpmap:120 rtx/90000\r\na=fmtp:120 apt=127\r\na=rtpmap:107 rtx/90000\r\na=fmtp:107 apt=125\r\na=rtpmap:109 rtx/90000\r\na=fmtp:109 apt=108\r\na=rtpmap:119 rtx/90000\r\na=fmtp:119 apt=124\r\na=rtpmap:118 rtx/90000\r\na=fmtp:118 apt=123\r\na=rtpmap:114 red/90000\r\na=rtpmap:115 rtx/90000\r\na=fmtp:115 apt=114\r\na=rtpmap:116 ulpfec/90000\r\na=ssrc-group:FID 9891702 1118143515\r\na=ssrc:9891702 cname:YEPLF2RCoRIB86l0\r\na=ssrc:9891702 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:9891702 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:9891702 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 cname:YEPLF2RCoRIB86l0\r\na=ssrc:1118143515 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1118143515 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197601430] +["setLocalDescription","PC_0",{"type":"offer","sdp":"v=0\r\no=- 3150697902537714209 3 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 62645 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 49911 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 49912 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 49913 typ host generation 0 network-id 3\r\na=candidate:1970230987 1 udp 1686052607 188.24.8.45 49911 typ srflx raddr 192.168.1.154 rport 49911 generation 0 network-id 1\r\na=candidate:2158490438 1 udp 41885695 3.122.28.43 62645 typ relay raddr 188.24.8.45 rport 49911 generation 0 network-id 1\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 50071 typ relay raddr 188.24.8.45 rport 59096 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2364213263 cname:YEPLF2RCoRIB86l0\r\na=ssrc:2364213263 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2364213263 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2364213263 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 UDP/TLS/RTP/SAVPF 102 127 125 108 124 123 96 97 98 99 100 101 121 120 107 109 119 118 114 115 116\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:102 H264/90000\r\na=rtpmap:127 H264/90000\r\na=rtpmap:125 H264/90000\r\na=rtpmap:108 H264/90000\r\na=rtpmap:124 H264/90000\r\na=rtpmap:123 H264/90000\r\na=rtpmap:96 VP8/90000\r\na=rtpmap:97 rtx/90000\r\na=rtpmap:98 VP9/90000\r\na=rtpmap:99 rtx/90000\r\na=rtpmap:100 VP9/90000\r\na=rtpmap:101 rtx/90000\r\na=rtpmap:121 rtx/90000\r\na=rtpmap:120 rtx/90000\r\na=rtpmap:107 rtx/90000\r\na=rtpmap:109 rtx/90000\r\na=rtpmap:119 rtx/90000\r\na=rtpmap:118 rtx/90000\r\na=rtpmap:114 red/90000\r\na=rtpmap:115 rtx/90000\r\na=rtpmap:116 ulpfec/90000\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f\r\na=fmtp:127 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f\r\na=fmtp:125 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f\r\na=fmtp:108 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f\r\na=fmtp:124 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d001f\r\na=fmtp:123 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=64001f\r\na=fmtp:97 apt=96\r\na=fmtp:98 profile-id=0\r\na=fmtp:99 apt=98\r\na=fmtp:100 profile-id=2\r\na=fmtp:101 apt=100\r\na=fmtp:121 apt=102\r\na=fmtp:120 apt=127\r\na=fmtp:107 apt=125\r\na=fmtp:109 apt=108\r\na=fmtp:119 apt=124\r\na=fmtp:118 apt=123\r\na=fmtp:115 apt=114\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=rtcp-fb:127 goog-remb\r\na=rtcp-fb:127 transport-cc\r\na=rtcp-fb:127 ccm fir\r\na=rtcp-fb:127 nack\r\na=rtcp-fb:127 nack pli\r\na=rtcp-fb:125 goog-remb\r\na=rtcp-fb:125 transport-cc\r\na=rtcp-fb:125 ccm fir\r\na=rtcp-fb:125 nack\r\na=rtcp-fb:125 nack pli\r\na=rtcp-fb:108 goog-remb\r\na=rtcp-fb:108 transport-cc\r\na=rtcp-fb:108 ccm fir\r\na=rtcp-fb:108 nack\r\na=rtcp-fb:108 nack pli\r\na=rtcp-fb:124 goog-remb\r\na=rtcp-fb:124 transport-cc\r\na=rtcp-fb:124 ccm fir\r\na=rtcp-fb:124 nack\r\na=rtcp-fb:124 nack pli\r\na=rtcp-fb:123 goog-remb\r\na=rtcp-fb:123 transport-cc\r\na=rtcp-fb:123 ccm fir\r\na=rtcp-fb:123 nack\r\na=rtcp-fb:123 nack pli\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:N/ku\r\na=ice-pwd:MxdEhabOrUUqaLk4EFmQBK2X\r\na=fingerprint:sha-256 21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3\r\na=ice-options:trickle\r\na=ssrc:9891702 cname:YEPLF2RCoRIB86l0\r\na=ssrc:9891702 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:9891702 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:9891702 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 cname:YEPLF2RCoRIB86l0\r\na=ssrc:1118143515 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1118143515 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1118143515 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 9891702 1118143515\r\na=rtcp-mux\r\na=rtcp-rsize\r\n"},1605197601435] +["setLocalDescriptionOnSuccess","PC_0",null,1605197601437] +["setRemoteDescription","PC_0",{"type":"answer","sdp":"v=0\r\no=- 1605197601411 2 IN IP4 0.0.0.0\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\nm=audio 1 RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10; useinbandfec=1\r\na=rtcp:1 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:+8ZN\r\na=ice-pwd:r02SlLNxLHUy3RFDnut1uSQv\r\na=fingerprint:sha-256 30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B\r\na=ssrc:250981789 cname:W8moCYnxRw01Ceaz-2\r\na=ssrc:250981789 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2 ab82fe8b-0a35-4b70-974d-283617131b02-2\r\na=ssrc:250981789 mslabel:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2\r\na=ssrc:250981789 label:ab82fe8b-0a35-4b70-974d-283617131b02-2\r\na=rtcp-mux\r\nm=video 1 RTP/SAVPF 102 127 125 108 124 123 96 97 98 99 100 101 121 120 107 109 119 118 114 115 116\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:102 H264/90000\r\na=rtpmap:127 H264/90000\r\na=rtpmap:125 H264/90000\r\na=rtpmap:108 H264/90000\r\na=rtpmap:124 H264/90000\r\na=rtpmap:123 H264/90000\r\na=rtpmap:96 VP8/90000\r\na=rtpmap:97 rtx/90000\r\na=rtpmap:98 VP9/90000\r\na=rtpmap:99 rtx/90000\r\na=rtpmap:100 VP9/90000\r\na=rtpmap:101 rtx/90000\r\na=rtpmap:121 rtx/90000\r\na=rtpmap:120 rtx/90000\r\na=rtpmap:107 rtx/90000\r\na=rtpmap:109 rtx/90000\r\na=rtpmap:119 rtx/90000\r\na=rtpmap:118 rtx/90000\r\na=rtpmap:114 red/90000\r\na=rtpmap:115 rtx/90000\r\na=rtpmap:116 ulpfec/90000\r\na=fmtp:102 level-asymmetry-allowed=1; packetization-mode=1; profile-level-id=42001f\r\na=fmtp:127 level-asymmetry-allowed=1; packetization-mode=0; profile-level-id=42001f\r\na=fmtp:125 level-asymmetry-allowed=1; packetization-mode=1; profile-level-id=42e01f\r\na=fmtp:108 level-asymmetry-allowed=1; packetization-mode=0; profile-level-id=42e01f\r\na=fmtp:124 level-asymmetry-allowed=1; packetization-mode=1; profile-level-id=4d0015\r\na=fmtp:123 level-asymmetry-allowed=1; packetization-mode=1; profile-level-id=640015\r\na=fmtp:97 apt=96\r\na=fmtp:98 profile-id=0\r\na=fmtp:99 apt=98\r\na=fmtp:100 profile-id=2\r\na=fmtp:101 apt=100\r\na=fmtp:121 apt=102\r\na=fmtp:120 apt=127\r\na=fmtp:107 apt=125\r\na=fmtp:109 apt=108\r\na=fmtp:119 apt=124\r\na=fmtp:118 apt=123\r\na=fmtp:115 apt=114\r\na=rtcp:1 IN IP4 0.0.0.0\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=rtcp-fb:127 goog-remb\r\na=rtcp-fb:127 transport-cc\r\na=rtcp-fb:127 ccm fir\r\na=rtcp-fb:127 nack\r\na=rtcp-fb:127 nack pli\r\na=rtcp-fb:125 goog-remb\r\na=rtcp-fb:125 transport-cc\r\na=rtcp-fb:125 ccm fir\r\na=rtcp-fb:125 nack\r\na=rtcp-fb:125 nack pli\r\na=rtcp-fb:108 goog-remb\r\na=rtcp-fb:108 transport-cc\r\na=rtcp-fb:108 ccm fir\r\na=rtcp-fb:108 nack\r\na=rtcp-fb:108 nack pli\r\na=rtcp-fb:124 goog-remb\r\na=rtcp-fb:124 transport-cc\r\na=rtcp-fb:124 ccm fir\r\na=rtcp-fb:124 nack\r\na=rtcp-fb:124 nack pli\r\na=rtcp-fb:123 goog-remb\r\na=rtcp-fb:123 transport-cc\r\na=rtcp-fb:123 ccm fir\r\na=rtcp-fb:123 nack\r\na=rtcp-fb:123 nack pli\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:5 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:6 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:+8ZN\r\na=ice-pwd:r02SlLNxLHUy3RFDnut1uSQv\r\na=fingerprint:sha-256 30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B\r\na=ssrc:2864088180 cname:W8moCYnxRw01Ceaz-2\r\na=ssrc:2864088180 msid:8a4e8995-5250-4ffc-91d3-04287d760407-2 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2\r\na=ssrc:2864088180 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-2\r\na=ssrc:2864088180 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2\r\na=ssrc:1534063650 cname:W8moCYnxRw01Ceaz-2\r\na=ssrc:1534063650 msid:8a4e8995-5250-4ffc-91d3-04287d760407-2 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2\r\na=ssrc:1534063650 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-2\r\na=ssrc:1534063650 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2\r\na=ssrc-group:FID 2864088180 1534063650\r\na=rtcp-mux\r\n"},1605197601439] +["onsignalingstatechange","PC_0","stable",1605197601497] +["oniceconnectionstatechange","PC_0","connected",1605197601498] +["oniceconnectionstatechange","PC_0","completed",1605197601624] +["onaddstream","PC_0","c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2 audio:ab82fe8b-0a35-4b70-974d-283617131b02-2",1605197601624] +["ontrack","PC_0","audio:ab82fe8b-0a35-4b70-974d-283617131b02-2 stream:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2",1605197601639] +["onaddstream","PC_0","8a4e8995-5250-4ffc-91d3-04287d760407-2 video:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2",1605197601639] +["ontrack","PC_0","video:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2 stream:8a4e8995-5250-4ffc-91d3-04287d760407-2",1605197601649] +["onicegatheringstatechange","PC_0","complete",1605197601649] +["onicecandidate","PC_0",null,1605197601649] +["onconnectionstatechange","PC_0","connected",1605197601651] +["setRemoteDescriptionOnSuccess","PC_0",null,1605197601651] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"type":"media-source","trackIdentifier":"c9a9984e-3ac8-41e5-bf66-1f4f7098f230","kind":"audio","audioLevel":0.00012207403790398877,"totalAudioEnergy":3.837283213022495e-8,"totalSamplesDuration":1.7400000000000013},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0,"type":"certificate","fingerprint":"21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3","fingerprintAlgorithm":"sha-256","base64Certificate":"MIIBFjCBvaADAgECAgkAzLyWDe5oYMcwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIwMTExMTE2MTMxOVoXDTIwMTIxMjE2MTMxOVowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE7hMl5ntyZCXOkXQI95RJ9LI+i+N7qlsFffiJw3TZs277zmFAXCc1e2aYAVpwLUq9ZwsVS/Kjfib+eJRYWC3GwDAKBggqhkjOPQQDAgNIADBFAiB2pByJXTEeUD987EMffaQv83Rp5QfY6KvxjCybi4mXYgIhAPOHkt5M2TEGrtAS2UOtY5XHcVj4lE2/UafpJ/hNQD6g"},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0,"type":"certificate","fingerprint":"30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B","fingerprintAlgorithm":"sha-256","base64Certificate":"MIIBFjCBvaADAgECAgkA34EWAYMUpqkwCgYIKoZIzj0EAwIwETEPMA0GA1UEAwwGV2ViUlRDMB4XDTIwMTExMTE2MTMyMFoXDTIwMTIxMjE2MTMyMFowETEPMA0GA1UEAwwGV2ViUlRDMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE8PCa+gyByf3ug1Ngdx+/d0Jho7xbvw3O+sfeWfCJa+ktW5g15G7Dv5Hg6tNK8wiW+HjfYOIYDQaHYTR0o1v7OTAKBggqhkjOPQQDAgNIADBFAiEA02EsicPe5r91JUp7V6xlCQn3cUnazUQFKrkLujg1dtICIAwBbIDuMiXsJ3GR3ylmVejhK5as4MXE5SWO/y2kIre5"},"RTCCodec_audio_Inbound_0":{"timestamp":0,"type":"codec","payloadType":0,"mimeType":"audio/PCMU","clockRate":8000,"channels":1},"RTCCodec_audio_Inbound_103":{"timestamp":0,"type":"codec","payloadType":103,"mimeType":"audio/ISAC","clockRate":16000,"channels":1},"RTCCodec_audio_Inbound_104":{"timestamp":0,"type":"codec","payloadType":104,"mimeType":"audio/ISAC","clockRate":32000,"channels":1},"RTCCodec_audio_Inbound_105":{"timestamp":0,"type":"codec","payloadType":105,"mimeType":"audio/CN","clockRate":16000,"channels":1},"RTCCodec_audio_Inbound_106":{"timestamp":0,"type":"codec","payloadType":106,"mimeType":"audio/CN","clockRate":32000,"channels":1},"RTCCodec_audio_Inbound_110":{"timestamp":0,"type":"codec","payloadType":110,"mimeType":"audio/telephone-event","clockRate":48000,"channels":1},"RTCCodec_audio_Inbound_111":{"timestamp":0,"type":"codec","payloadType":111,"mimeType":"audio/opus","clockRate":48000,"channels":2,"sdpFmtpLine":"minptime=10;useinbandfec=1"},"RTCCodec_audio_Inbound_112":{"timestamp":0,"type":"codec","payloadType":112,"mimeType":"audio/telephone-event","clockRate":32000,"channels":1},"RTCCodec_audio_Inbound_113":{"timestamp":0,"type":"codec","payloadType":113,"mimeType":"audio/telephone-event","clockRate":16000,"channels":1},"RTCCodec_audio_Inbound_126":{"timestamp":0,"type":"codec","payloadType":126,"mimeType":"audio/telephone-event","clockRate":8000,"channels":1},"RTCCodec_audio_Inbound_13":{"timestamp":0,"type":"codec","payloadType":13,"mimeType":"audio/CN","clockRate":8000,"channels":1},"RTCCodec_audio_Inbound_8":{"timestamp":0,"type":"codec","payloadType":8,"mimeType":"audio/PCMA","clockRate":8000,"channels":1},"RTCCodec_audio_Inbound_9":{"timestamp":0,"type":"codec","payloadType":9,"mimeType":"audio/G722","clockRate":8000,"channels":1},"RTCCodec_audio_Outbound_0":{"timestamp":0,"type":"codec","payloadType":0,"mimeType":"audio/PCMU","clockRate":8000,"channels":1},"RTCCodec_audio_Outbound_103":{"timestamp":0,"type":"codec","payloadType":103,"mimeType":"audio/ISAC","clockRate":16000,"channels":1},"RTCCodec_audio_Outbound_104":{"timestamp":0,"type":"codec","payloadType":104,"mimeType":"audio/ISAC","clockRate":32000,"channels":1},"RTCCodec_audio_Outbound_105":{"timestamp":0,"type":"codec","payloadType":105,"mimeType":"audio/CN","clockRate":16000,"channels":1},"RTCCodec_audio_Outbound_106":{"timestamp":0,"type":"codec","payloadType":106,"mimeType":"audio/CN","clockRate":32000,"channels":1},"RTCCodec_audio_Outbound_110":{"timestamp":0,"type":"codec","payloadType":110,"mimeType":"audio/telephone-event","clockRate":48000,"channels":1},"RTCCodec_audio_Outbound_111":{"timestamp":0,"type":"codec","payloadType":111,"mimeType":"audio/opus","clockRate":48000,"channels":2,"sdpFmtpLine":"minptime=10;useinbandfec=1"},"RTCCodec_audio_Outbound_112":{"timestamp":0,"type":"codec","payloadType":112,"mimeType":"audio/telephone-event","clockRate":32000,"channels":1},"RTCCodec_audio_Outbound_113":{"timestamp":0,"type":"codec","payloadType":113,"mimeType":"audio/telephone-event","clockRate":16000,"channels":1},"RTCCodec_audio_Outbound_126":{"timestamp":0,"type":"codec","payloadType":126,"mimeType":"audio/telephone-event","clockRate":8000,"channels":1},"RTCCodec_audio_Outbound_13":{"timestamp":0,"type":"codec","payloadType":13,"mimeType":"audio/CN","clockRate":8000,"channels":1},"RTCCodec_audio_Outbound_8":{"timestamp":0,"type":"codec","payloadType":8,"mimeType":"audio/PCMA","clockRate":8000,"channels":1},"RTCCodec_audio_Outbound_9":{"timestamp":0,"type":"codec","payloadType":9,"mimeType":"audio/G722","clockRate":8000,"channels":1},"RTCCodec_video_Inbound_100":{"timestamp":0,"type":"codec","payloadType":100,"mimeType":"video/VP9","clockRate":90000,"sdpFmtpLine":"profile-id=2"},"RTCCodec_video_Inbound_101":{"timestamp":0,"type":"codec","payloadType":101,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=100"},"RTCCodec_video_Inbound_102":{"timestamp":0,"type":"codec","payloadType":102,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f"},"RTCCodec_video_Inbound_107":{"timestamp":0,"type":"codec","payloadType":107,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=125"},"RTCCodec_video_Inbound_108":{"timestamp":0,"type":"codec","payloadType":108,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f"},"RTCCodec_video_Inbound_109":{"timestamp":0,"type":"codec","payloadType":109,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=108"},"RTCCodec_video_Inbound_114":{"timestamp":0,"type":"codec","payloadType":114,"mimeType":"video/red","clockRate":90000},"RTCCodec_video_Inbound_115":{"timestamp":0,"type":"codec","payloadType":115,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=114"},"RTCCodec_video_Inbound_116":{"timestamp":0,"type":"codec","payloadType":116,"mimeType":"video/ulpfec","clockRate":90000},"RTCCodec_video_Inbound_118":{"timestamp":0,"type":"codec","payloadType":118,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=123"},"RTCCodec_video_Inbound_119":{"timestamp":0,"type":"codec","payloadType":119,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=124"},"RTCCodec_video_Inbound_120":{"timestamp":0,"type":"codec","payloadType":120,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=127"},"RTCCodec_video_Inbound_121":{"timestamp":0,"type":"codec","payloadType":121,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=102"},"RTCCodec_video_Inbound_123":{"timestamp":0,"type":"codec","payloadType":123,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=64001f"},"RTCCodec_video_Inbound_124":{"timestamp":0,"type":"codec","payloadType":124,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d001f"},"RTCCodec_video_Inbound_125":{"timestamp":0,"type":"codec","payloadType":125,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f"},"RTCCodec_video_Inbound_127":{"timestamp":0,"type":"codec","payloadType":127,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f"},"RTCCodec_video_Inbound_96":{"timestamp":0,"type":"codec","payloadType":96,"mimeType":"video/VP8","clockRate":90000},"RTCCodec_video_Inbound_97":{"timestamp":0,"type":"codec","payloadType":97,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=96"},"RTCCodec_video_Inbound_98":{"timestamp":0,"type":"codec","payloadType":98,"mimeType":"video/VP9","clockRate":90000,"sdpFmtpLine":"profile-id=0"},"RTCCodec_video_Inbound_99":{"timestamp":0,"type":"codec","payloadType":99,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=98"},"RTCCodec_video_Outbound_100":{"timestamp":0,"type":"codec","payloadType":100,"mimeType":"video/VP9","clockRate":90000,"sdpFmtpLine":"profile-id=2"},"RTCCodec_video_Outbound_101":{"timestamp":0,"type":"codec","payloadType":101,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=100"},"RTCCodec_video_Outbound_102":{"timestamp":0,"type":"codec","payloadType":102,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f"},"RTCCodec_video_Outbound_107":{"timestamp":0,"type":"codec","payloadType":107,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=125"},"RTCCodec_video_Outbound_108":{"timestamp":0,"type":"codec","payloadType":108,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f"},"RTCCodec_video_Outbound_109":{"timestamp":0,"type":"codec","payloadType":109,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=108"},"RTCCodec_video_Outbound_114":{"timestamp":0,"type":"codec","payloadType":114,"mimeType":"video/red","clockRate":90000},"RTCCodec_video_Outbound_115":{"timestamp":0,"type":"codec","payloadType":115,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=114"},"RTCCodec_video_Outbound_116":{"timestamp":0,"type":"codec","payloadType":116,"mimeType":"video/ulpfec","clockRate":90000},"RTCCodec_video_Outbound_118":{"timestamp":0,"type":"codec","payloadType":118,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=123"},"RTCCodec_video_Outbound_119":{"timestamp":0,"type":"codec","payloadType":119,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=124"},"RTCCodec_video_Outbound_120":{"timestamp":0,"type":"codec","payloadType":120,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=127"},"RTCCodec_video_Outbound_121":{"timestamp":0,"type":"codec","payloadType":121,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=102"},"RTCCodec_video_Outbound_123":{"timestamp":0,"type":"codec","payloadType":123,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=640015"},"RTCCodec_video_Outbound_124":{"timestamp":0,"type":"codec","payloadType":124,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d0015"},"RTCCodec_video_Outbound_125":{"timestamp":0,"type":"codec","payloadType":125,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f"},"RTCCodec_video_Outbound_127":{"timestamp":0,"type":"codec","payloadType":127,"mimeType":"video/H264","clockRate":90000,"sdpFmtpLine":"level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f"},"RTCCodec_video_Outbound_96":{"timestamp":0,"type":"codec","payloadType":96,"mimeType":"video/VP8","clockRate":90000},"RTCCodec_video_Outbound_97":{"timestamp":0,"type":"codec","payloadType":97,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=96"},"RTCCodec_video_Outbound_98":{"timestamp":0,"type":"codec","payloadType":98,"mimeType":"video/VP9","clockRate":90000,"sdpFmtpLine":"profile-id=0"},"RTCCodec_video_Outbound_99":{"timestamp":0,"type":"codec","payloadType":99,"mimeType":"video/rtx","clockRate":90000,"sdpFmtpLine":"apt=98"},"RTCIceCandidatePair_7nQ+QEPW_3mz/riqT":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_7nQ+QEPW","remoteCandidateId":"RTCIceCandidate_3mz/riqT","state":"waiting","priority":7961835276047498000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":1,"requestsSent":0,"responsesReceived":0,"responsesSent":1,"consentRequestsSent":0},"RTCIceCandidatePair_RTKTApnA_wcpOWLrv":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_RTKTApnA","remoteCandidateId":"RTCIceCandidate_wcpOWLrv","state":"succeeded","priority":7962116751024340000,"nominated":true,"writable":true,"bytesSent":1186,"bytesReceived":1176,"totalRoundTripTime":0.012,"currentRoundTripTime":0.001,"availableOutgoingBitrate":300000,"requestsReceived":3,"requestsSent":1,"responsesReceived":2,"responsesSent":3,"consentRequestsSent":1},"RTCIceCandidate_3mz/riqT":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"","port":60912,"protocol":"udp","candidateType":"prflx","priority":1853759231,"deleted":false},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"172.17.16.1","port":49912,"protocol":"udp","candidateType":"host","priority":2122194687,"deleted":false},"RTCIceCandidate_RTKTApnA":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"192.168.1.154","port":49911,"protocol":"udp","candidateType":"host","priority":2122260223,"deleted":false},"RTCIceCandidate_wcpOWLrv":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"","port":60911,"protocol":"udp","candidateType":"prflx","priority":1853824767,"deleted":false},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"type":"inbound-rtp","ssrc":250981789,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_receiver_5","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Inbound_111","packetsReceived":2,"fecPacketsReceived":0,"fecPacketsDiscarded":0,"bytesReceived":85,"headerBytesReceived":48,"packetsLost":0,"lastPacketReceivedTimestamp":275606.123,"jitter":0.001,"jitterBufferDelay":0,"jitterBufferEmittedCount":0,"totalSamplesReceived":800,"concealedSamples":800,"silentConcealedSamples":280,"concealmentEvents":1,"insertedSamplesForDeceleration":0,"removedSamplesForAcceleration":0,"audioLevel":0,"totalAudioEnergy":0,"totalSamplesDuration":0.05},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"type":"inbound-rtp","ssrc":2864088180,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_receiver_6","transportId":"RTCTransport_audio_1","firCount":0,"pliCount":0,"nackCount":0,"packetsReceived":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"framesReceived":0,"framesDecoded":0,"keyFramesDecoded":0,"framesDropped":0,"totalDecodeTime":0,"totalInterFrameDelay":0,"totalSquaredInterFrameDelay":0,"decoderImplementation":"unknown"},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"type":"track","trackIdentifier":"ab82fe8b-0a35-4b70-974d-283617131b02-2","remoteSource":true,"ended":false,"detached":false,"kind":"audio","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"audioLevel":0,"totalAudioEnergy":0,"totalSamplesReceived":800,"totalSamplesDuration":0.05,"concealedSamples":800,"silentConcealedSamples":280,"concealmentEvents":1,"insertedSamplesForDeceleration":0,"removedSamplesForAcceleration":0},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"type":"track","trackIdentifier":"9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-2","remoteSource":true,"ended":false,"detached":false,"kind":"video","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"framesReceived":0,"framesDecoded":0,"framesDropped":0},"RTCMediaStreamTrack_sender_1":{"timestamp":0,"type":"track","trackIdentifier":"c9a9984e-3ac8-41e5-bf66-1f4f7098f230","mediaSourceId":"RTCAudioSource_1","remoteSource":false,"ended":false,"detached":false,"kind":"audio"},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"type":"track","trackIdentifier":"30bb2010-3c2e-4509-a5d6-6fc4d00257d2","mediaSourceId":"RTCVideoSource_2","remoteSource":false,"ended":false,"detached":false,"kind":"video","frameWidth":0,"frameHeight":0,"framesSent":0,"hugeFramesSent":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"type":"stream","streamIdentifier":"763f09bf-2814-4ed8-98ec-21797d9e940c","trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"type":"stream","streamIdentifier":"8a4e8995-5250-4ffc-91d3-04287d760407-2","trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"type":"stream","streamIdentifier":"c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2","trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"type":"stream","streamIdentifier":"cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081","trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"type":"outbound-rtp","ssrc":2364213263,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_sender_1","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Outbound_111","mediaSourceId":"RTCAudioSource_1","packetsSent":0,"retransmittedPacketsSent":0,"bytesSent":0,"headerBytesSent":0,"retransmittedBytesSent":0},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"type":"outbound-rtp","ssrc":9891702,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_sender_2","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_102","firCount":0,"pliCount":0,"nackCount":0,"mediaSourceId":"RTCVideoSource_2","packetsSent":0,"retransmittedPacketsSent":0,"bytesSent":0,"headerBytesSent":0,"retransmittedBytesSent":0,"framesEncoded":0,"keyFramesEncoded":0,"totalEncodeTime":0,"totalEncodedBytesTarget":0,"framesSent":0,"hugeFramesSent":0,"totalPacketSendDelay":0,"qualityLimitationReason":"none","qualityLimitationResolutionChanges":1,"encoderImplementation":"unknown"},"RTCPeerConnection":{"timestamp":0,"type":"peer-connection","dataChannelsOpened":0,"dataChannelsClosed":0},"RTCTransport_audio_1":{"timestamp":0,"type":"transport","bytesSent":1186,"packetsSent":2,"bytesReceived":1176,"packetsReceived":6,"dtlsState":"connected","selectedCandidatePairId":"RTCIceCandidatePair_RTKTApnA_wcpOWLrv","localCertificateId":"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3","remoteCertificateId":"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B","tlsVersion":"FEFD","dtlsCipher":"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","srtpCipher":"AES_CM_128_HMAC_SHA1_80","selectedCandidatePairChanges":1},"RTCVideoSource_2":{"timestamp":0,"type":"media-source","trackIdentifier":"30bb2010-3c2e-4509-a5d6-6fc4d00257d2","kind":"video","width":1280,"height":720,"framesPerSecond":0},"timestamp":1605197601499},1605197601722] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=group:BUNDLE audio video\r\nm=audio 10000 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:2566963332 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2566963332 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:2566963332 mslabel:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1\r\na=ssrc:2566963332 label:ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=rtcp-mux\r\nm=video 10000 RTP/SAVPF 100 96\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1527498116 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:1527498116 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1527498116 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:1527498116 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:2429519549 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2429519549 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:2429519549 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:2429519549 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc-group:FID 1527498116 2429519549\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197601737] +["onsignalingstatechange","PC_1","have-remote-offer",1605197601844] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":4.364443965102771e-8,"totalSamplesDuration":2.0799999999999996},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_3mz/riqT":{"timestamp":0,"state":"succeeded","writable":true,"currentRoundTripTime":0,"requestsReceived":2,"requestsSent":1,"responsesReceived":1,"responsesSent":2},"RTCIceCandidatePair_AYIV3B/k_4wH6Upev":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_AYIV3B/k","remoteCandidateId":"RTCIceCandidate_4wH6Upev","state":"succeeded","priority":7961553801070657000,"nominated":false,"writable":true,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"currentRoundTripTime":0,"requestsReceived":1,"requestsSent":1,"responsesReceived":1,"responsesSent":1,"consentRequestsSent":0},"RTCIceCandidatePair_RTKTApnA_wcpOWLrv":{"timestamp":0,"bytesSent":17809,"bytesReceived":51408,"totalRoundTripTime":0.013,"availableOutgoingBitrate":563250,"responsesReceived":3,"consentRequestsSent":2},"RTCIceCandidate_3mz/riqT":{"timestamp":0},"RTCIceCandidate_4wH6Upev":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"","port":60913,"protocol":"udp","candidateType":"prflx","priority":1853693695,"deleted":false},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"192.168.56.1","port":49913,"protocol":"udp","candidateType":"host","priority":2122129151,"deleted":false},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_wcpOWLrv":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":19,"bytesReceived":799,"headerBytesReceived":456,"lastPacketReceivedTimestamp":275606.468,"jitter":0.003,"jitterBufferDelay":681.6,"jitterBufferEmittedCount":15360,"totalSamplesReceived":16160,"insertedSamplesForDeceleration":680,"audioLevel":3,"totalAudioEnergy":4.191207392864387e-10,"totalSamplesDuration":0.37000000000000016},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"codecId":"RTCCodec_video_Inbound_102","pliCount":1,"packetsReceived":50,"bytesReceived":45399,"headerBytesReceived":1236,"lastPacketReceivedTimestamp":275606.468,"framesReceived":12,"frameWidth":1280,"frameHeight":720,"framesPerSecond":8,"framesDecoded":11,"keyFramesDecoded":1,"totalDecodeTime":0.066,"totalInterFrameDelay":0.11299999999999999,"totalSquaredInterFrameDelay":0.002973,"decoderImplementation":"ExternalDecoder"},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":681.6,"jitterBufferEmittedCount":15360,"audioLevel":0.00009155552842799158,"totalAudioEnergy":4.191207392864387e-10,"totalSamplesReceived":16160,"totalSamplesDuration":0.37000000000000016,"insertedSamplesForDeceleration":680},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":0.223,"jitterBufferEmittedCount":6,"frameWidth":1280,"frameHeight":720,"framesReceived":12,"framesDecoded":11},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"frameWidth":1280,"frameHeight":720,"framesSent":11,"hugeFramesSent":2},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":16,"bytesSent":703,"headerBytesSent":384},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":14,"bytesSent":14546,"headerBytesSent":336,"framesEncoded":11,"keyFramesEncoded":1,"totalEncodeTime":0.091,"frameWidth":1280,"frameHeight":720,"framesPerSecond":31,"framesSent":11,"hugeFramesSent":2,"totalPacketSendDelay":2.205,"encoderImplementation":"ExternalEncoder"},"RTCPeerConnection":{"timestamp":0},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":17809,"packetsSent":39,"bytesReceived":51408,"packetsReceived":81},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":32},"timestamp":1605197601843},1605197601866] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197601867] +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197601867] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00021362956633198035,"totalAudioEnergy":4.3867970711980495e-8,"totalSamplesDuration":1.8200000000000014},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0,"type":"certificate","fingerprint":"A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E","fingerprintAlgorithm":"sha-256","base64Certificate":"MIIBQjCB6qADAgECAgYBdbwJcF8wCgYIKoZIzj0EAwIwKTEnMCUGA1UEAwweVE9ETy1BUFAtTkFNRSBUT0RPLUFQUC1WRVJTSU9OMB4XDTIwMTExMTEwMzg1NloXDTIwMTExOTEwMzg1NlowKTEnMCUGA1UEAwweVE9ETy1BUFAtTkFNRSBUT0RPLUFQUC1WRVJTSU9OMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEIxJBCrr/UuAAWHsnofF7ny7t9592fYfxt0e5fLZPUr4NbODbN00ayEgpf8HZROyJIdJ5J5D+IQ7BB3bYsPdaHTAKBggqhkjOPQQDAgNHADBEAiB5WNfte+IQ+ZwIsQoI1y8bkzzHsSVc3jRFVOZn2eUCWwIgT+tTpnOjRFkM/oZcB5CStLqXfCMQ/oMs/93fbaEV748="},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0,"state":"in-progress","requestsSent":3},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0,"requestsSent":3},"RTCIceCandidatePair_MxIlELq+_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_MxIlELq+_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"nominated":true,"bytesSent":229333,"bytesReceived":61556,"totalRoundTripTime":0.244,"currentRoundTripTime":0.064,"availableOutgoingBitrate":4263500,"requestsReceived":3,"responsesReceived":4,"responsesSent":3,"consentRequestsSent":3},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0,"requestsSent":3},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0,"requestsSent":3},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0,"requestsSent":3},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_MxIlELq+":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"codecId":"RTCCodec_audio_Inbound_111","packetsReceived":67,"bytesReceived":2615,"headerBytesReceived":1608,"lastPacketReceivedTimestamp":275606.432,"jitter":0.012,"jitterBufferDelay":2361.6,"jitterBufferEmittedCount":60480,"totalSamplesReceived":65440,"concealedSamples":3183,"silentConcealedSamples":1560,"concealmentEvents":2,"insertedSamplesForDeceleration":1886,"audioLevel":2,"totalAudioEnergy":9.74222873985811e-9,"totalSamplesDuration":1.450000000000001},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"codecId":"RTCCodec_video_Inbound_100","qpSum":3444,"packetsReceived":64,"bytesReceived":50668,"headerBytesReceived":1536,"lastPacketReceivedTimestamp":275606.432,"framesReceived":39,"frameWidth":1280,"frameHeight":720,"framesPerSecond":25,"framesDecoded":38,"keyFramesDecoded":5,"framesDropped":1,"totalDecodeTime":0.045,"totalInterFrameDelay":1.3430000000000006,"totalSquaredInterFrameDelay":0.065189,"decoderImplementation":"libvpx"},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"jitterBufferDelay":2361.6,"jitterBufferEmittedCount":60480,"audioLevel":0.00006103701895199438,"totalAudioEnergy":9.74222873985811e-9,"totalSamplesReceived":65440,"totalSamplesDuration":1.450000000000001,"concealedSamples":3183,"silentConcealedSamples":1560,"concealmentEvents":2,"insertedSamplesForDeceleration":1886},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":1.363,"jitterBufferEmittedCount":37,"frameWidth":1280,"frameHeight":720,"framesReceived":39,"framesDecoded":38,"framesDropped":1},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"frameWidth":1280,"frameHeight":720,"framesSent":109},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"remoteId":"RTCRemoteInboundRtpAudioStream_2545347749","packetsSent":67,"bytesSent":2955,"headerBytesSent":1340},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0,"type":"outbound-rtp","ssrc":1191903134,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_sender_4","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_100","firCount":0,"pliCount":0,"nackCount":0,"qpSum":2450,"mediaSourceId":"RTCVideoSource_4","remoteId":"RTCRemoteInboundRtpVideoStream_1191903134","packetsSent":153,"retransmittedPacketsSent":0,"bytesSent":133055,"headerBytesSent":6584,"retransmittedBytesSent":0,"framesEncoded":33,"keyFramesEncoded":2,"totalEncodeTime":0.582,"totalEncodedBytesTarget":0,"frameWidth":1280,"frameHeight":720,"framesPerSecond":27,"framesSent":33,"hugeFramesSent":0,"totalPacketSendDelay":4.122,"qualityLimitationReason":"none","qualityLimitationResolutionChanges":1,"encoderImplementation":"libvpx"},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"type":"outbound-rtp","ssrc":1409401962,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_sender_4","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_100","firCount":0,"pliCount":0,"nackCount":0,"qpSum":2689,"mediaSourceId":"RTCVideoSource_4","remoteId":"RTCRemoteInboundRtpVideoStream_1409401962","packetsSent":85,"retransmittedPacketsSent":0,"bytesSent":62680,"headerBytesSent":2712,"retransmittedBytesSent":0,"framesEncoded":38,"keyFramesEncoded":3,"totalEncodeTime":0.605,"totalEncodedBytesTarget":0,"frameWidth":640,"frameHeight":360,"framesSent":38,"hugeFramesSent":0,"totalPacketSendDelay":1.646,"qualityLimitationReason":"none","qualityLimitationResolutionChanges":1,"encoderImplementation":"libvpx"},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":3,"qpSum":3227,"remoteId":"RTCRemoteInboundRtpVideoStream_3077306155","packetsSent":37,"bytesSent":11260,"headerBytesSent":888,"framesEncoded":38,"keyFramesEncoded":3,"totalEncodeTime":0.606,"frameWidth":320,"frameHeight":180,"framesSent":38,"totalPacketSendDelay":0.955,"qualityLimitationResolutionChanges":1,"encoderImplementation":"libvpx"},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197601589,"type":"remote-inbound-rtp","ssrc":2545347749,"kind":"audio","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Outbound_111","packetsLost":0,"jitter":0.000125,"localId":"RTCOutboundRTPAudioStream_2545347749","roundTripTime":0},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197601589,"type":"remote-inbound-rtp","ssrc":1191903134,"kind":"video","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_100","packetsLost":0,"jitter":0.000044444444444444447,"localId":"RTCOutboundRTPVideoStream_1191903134","roundTripTime":0.058},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197601589,"type":"remote-inbound-rtp","ssrc":1409401962,"kind":"video","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_100","packetsLost":0,"jitter":0.00006666666666666667,"localId":"RTCOutboundRTPVideoStream_1409401962","roundTripTime":0.058},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197601589,"type":"remote-inbound-rtp","ssrc":3077306155,"kind":"video","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_100","packetsLost":0,"jitter":0.00008888888888888889,"localId":"RTCOutboundRTPVideoStream_3077306155","roundTripTime":0.058},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":229333,"packetsSent":377,"bytesReceived":61556,"packetsReceived":181,"dtlsState":"connected","remoteCertificateId":"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E","tlsVersion":"FEFD","dtlsCipher":"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256","srtpCipher":"AEAD_AES_128_GCM"},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":29},"timestamp":1605197601849},1605197601950] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 4 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197601958] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 4 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=inactive\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=inactive\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197601962] +["onsignalingstatechange","PC_1","stable",1605197602021] +["setLocalDescriptionOnSuccess","PC_1",null,1605197602021] +["addIceCandidate","PC_0",{"candidate":"candidate:4096217215 1 udp 2122260223 192.168.1.154 60911 typ host generation 0","sdpMid":"","sdpMLineIndex":0},1605197602040] +["addIceCandidate","PC_0",{"candidate":"candidate:1479382210 1 udp 2122194687 172.17.16.1 60912 typ host generation 0","sdpMid":"","sdpMLineIndex":0},1605197602041] +["addIceCandidate","PC_0",{"candidate":"candidate:2999745851 1 udp 2122129151 192.168.56.1 60913 typ host generation 0","sdpMid":"","sdpMLineIndex":0},1605197602041] +["addIceCandidateOnSuccess","PC_0",null,1605197602048] +["oniceconnectionstatechange","PC_0","connected",1605197602048] +["addIceCandidateOnSuccess","PC_0",null,1605197602048] +["addIceCandidateOnSuccess","PC_0",null,1605197602049] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.0003967406231879635,"totalAudioEnergy":6.440488693701593e-8,"totalSamplesDuration":2.289999999999995},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_FDmuDvJ3":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_7nQ+QEPW","remoteCandidateId":"RTCIceCandidate_FDmuDvJ3","state":"waiting","priority":9114475305677635000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_7nQ+QEPW","remoteCandidateId":"RTCIceCandidate_WfUa5C2W","state":"waiting","priority":9114756780654476000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_7nQ+QEPW","remoteCandidateId":"RTCIceCandidate_b+UdmxOr","state":"succeeded","priority":9114756780654345000,"nominated":false,"writable":true,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"currentRoundTripTime":0,"requestsReceived":3,"requestsSent":1,"responsesReceived":1,"responsesSent":3,"consentRequestsSent":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_AYIV3B/k","remoteCandidateId":"RTCIceCandidate_FDmuDvJ3","state":"succeeded","priority":9114475305677503000,"nominated":false,"writable":true,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"currentRoundTripTime":0,"requestsReceived":2,"requestsSent":1,"responsesReceived":1,"responsesSent":2,"consentRequestsSent":0},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_AYIV3B/k","remoteCandidateId":"RTCIceCandidate_WfUa5C2W","state":"waiting","priority":9114475305677766000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_AYIV3B/k","remoteCandidateId":"RTCIceCandidate_b+UdmxOr","state":"waiting","priority":9114475305677635000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_RTKTApnA_FDmuDvJ3":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_RTKTApnA","remoteCandidateId":"RTCIceCandidate_FDmuDvJ3","state":"waiting","priority":9114475305677766000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_RTKTApnA","remoteCandidateId":"RTCIceCandidate_WfUa5C2W","state":"succeeded","priority":9115038255631187000,"nominated":true,"writable":true,"bytesSent":28509,"bytesReceived":98555,"totalRoundTripTime":0.013,"currentRoundTripTime":0.001,"availableOutgoingBitrate":563250,"requestsReceived":3,"requestsSent":1,"responsesReceived":3,"responsesSent":3,"consentRequestsSent":2},"RTCIceCandidatePair_RTKTApnA_b+UdmxOr":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_RTKTApnA","remoteCandidateId":"RTCIceCandidate_b+UdmxOr","state":"waiting","priority":9114756780654476000,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_S5uPeCSO_FDmuDvJ3":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_S5uPeCSO","remoteCandidateId":"RTCIceCandidate_FDmuDvJ3","state":"waiting","priority":35781406852005376,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_S5uPeCSO_WfUa5C2W":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_S5uPeCSO","remoteCandidateId":"RTCIceCandidate_WfUa5C2W","state":"waiting","priority":35781406852267520,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_S5uPeCSO_b+UdmxOr":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_S5uPeCSO","remoteCandidateId":"RTCIceCandidate_b+UdmxOr","state":"waiting","priority":35781406852136450,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_mmPnX60S_FDmuDvJ3":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_mmPnX60S","remoteCandidateId":"RTCIceCandidate_FDmuDvJ3","state":"waiting","priority":179897694439489020,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_mmPnX60S_WfUa5C2W":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_mmPnX60S","remoteCandidateId":"RTCIceCandidate_WfUa5C2W","state":"waiting","priority":179897694439751170,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidatePair_mmPnX60S_b+UdmxOr":{"timestamp":0,"type":"candidate-pair","transportId":"RTCTransport_audio_1","localCandidateId":"RTCIceCandidate_mmPnX60S","remoteCandidateId":"RTCIceCandidate_b+UdmxOr","state":"waiting","priority":179897694439620100,"nominated":false,"writable":false,"bytesSent":0,"bytesReceived":0,"totalRoundTripTime":0,"requestsReceived":0,"requestsSent":0,"responsesReceived":0,"responsesSent":0,"consentRequestsSent":0},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"192.168.56.1","port":60913,"protocol":"udp","candidateType":"host","priority":2122129151,"deleted":false},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_S5uPeCSO":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"3.122.28.43","port":50071,"protocol":"udp","relayProtocol":"tls","candidateType":"relay","priority":8331007,"deleted":false},"RTCIceCandidate_WfUa5C2W":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"192.168.1.154","port":60911,"protocol":"udp","candidateType":"host","priority":2122260223,"deleted":false},"RTCIceCandidate_b+UdmxOr":{"timestamp":0,"type":"remote-candidate","transportId":"RTCTransport_audio_1","isRemote":true,"ip":"172.17.16.1","port":60912,"protocol":"udp","candidateType":"host","priority":2122194687,"deleted":false},"RTCIceCandidate_mmPnX60S":{"timestamp":0,"type":"local-candidate","transportId":"RTCTransport_audio_1","isRemote":false,"networkType":"ethernet","ip":"3.122.28.43","port":62645,"protocol":"udp","relayProtocol":"udp","candidateType":"relay","priority":41885695,"deleted":false},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":29,"bytesReceived":1426,"headerBytesReceived":696,"lastPacketReceivedTimestamp":275606.66},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"pliCount":2,"packetsReceived":95,"bytesReceived":86800,"headerBytesReceived":2336,"lastPacketReceivedTimestamp":275606.638,"framesReceived":16,"framesPerSecond":12,"framesDecoded":16,"keyFramesDecoded":2,"totalDecodeTime":0.07,"totalInterFrameDelay":0.326,"totalSquaredInterFrameDelay":0.012626},"RTCMediaStreamTrack_receiver_5":{"timestamp":0},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":0.465,"jitterBufferEmittedCount":11,"framesReceived":16,"framesDecoded":16},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":16},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":27,"bytesSent":1341,"headerBytesSent":648},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"pliCount":2,"remoteId":"RTCRemoteInboundRtpVideoStream_9891702","packetsSent":22,"bytesSent":23590,"headerBytesSent":548,"framesEncoded":16,"keyFramesEncoded":2,"totalEncodeTime":0.124,"framesPerSecond":29,"framesSent":16,"totalPacketSendDelay":5.904},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197601946,"type":"remote-inbound-rtp","ssrc":9891702,"kind":"video","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Outbound_102","packetsLost":0,"jitter":0,"localId":"RTCOutboundRTPVideoStream_9891702","roundTripTime":0.001},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":28509,"packetsSent":64,"bytesReceived":98555,"packetsReceived":145,"selectedCandidatePairId":"RTCIceCandidatePair_RTKTApnA_WfUa5C2W"},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":29},"timestamp":1605197602049},1605197602115] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":2.839589577636641e-7,"totalSamplesDuration":3.9199999999999604},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0,"state":"in-progress","requestsSent":4},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"totalRoundTripTime":0.002,"responsesReceived":3,"consentRequestsSent":2},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"totalRoundTripTime":0.001,"requestsReceived":3,"responsesReceived":3,"responsesSent":3,"consentRequestsSent":2},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0,"state":"in-progress","requestsSent":3},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0,"state":"in-progress","requestsSent":3},"RTCIceCandidatePair_RTKTApnA_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":151961,"bytesReceived":384592,"currentRoundTripTime":0,"availableOutgoingBitrate":638776,"requestsReceived":4,"responsesReceived":4,"responsesSent":4,"consentRequestsSent":3},"RTCIceCandidatePair_RTKTApnA_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_FDmuDvJ3":{"timestamp":0,"state":"failed"},"RTCIceCandidatePair_S5uPeCSO_WfUa5C2W":{"timestamp":0,"state":"failed"},"RTCIceCandidatePair_S5uPeCSO_b+UdmxOr":{"timestamp":0,"state":"failed"},"RTCIceCandidatePair_mmPnX60S_FDmuDvJ3":{"timestamp":0,"state":"failed"},"RTCIceCandidatePair_mmPnX60S_WfUa5C2W":{"timestamp":0,"state":"failed"},"RTCIceCandidatePair_mmPnX60S_b+UdmxOr":{"timestamp":0,"state":"failed"},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_S5uPeCSO":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_mmPnX60S":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":111,"bytesReceived":5060,"headerBytesReceived":2664,"lastPacketReceivedTimestamp":275608.295,"jitter":0.002,"jitterBufferDelay":16819.2,"jitterBufferEmittedCount":101760,"totalSamplesReceived":91520,"removedSamplesForAcceleration":10580,"audioLevel":4,"totalAudioEnergy":1.1091797520360438e-7,"totalSamplesDuration":1.9400000000000015},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"pliCount":3,"packetsReceived":418,"bytesReceived":356214,"headerBytesReceived":10224,"lastPacketReceivedTimestamp":275608.296,"framesReceived":66,"framesPerSecond":30,"framesDecoded":65,"keyFramesDecoded":4,"totalDecodeTime":0.147,"totalInterFrameDelay":1.9649999999999999,"totalSquaredInterFrameDelay":0.06917299999999997},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":16819.2,"jitterBufferEmittedCount":101760,"audioLevel":0.00012207403790398877,"totalAudioEnergy":1.1091797520360438e-7,"totalSamplesReceived":91520,"totalSamplesDuration":1.9400000000000015,"removedSamplesForAcceleration":10580},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":3.005,"jitterBufferEmittedCount":60,"framesReceived":66,"framesDecoded":65},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":65,"hugeFramesSent":3},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"remoteId":"RTCRemoteInboundRtpAudioStream_2364213263","packetsSent":109,"bytesSent":4673,"headerBytesSent":2616},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":160,"bytesSent":134238,"headerBytesSent":4044,"framesEncoded":65,"keyFramesEncoded":3,"totalEncodeTime":0.409,"framesPerSecond":30,"framesSent":65,"hugeFramesSent":3,"totalPacketSendDelay":27.393},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197602995,"type":"remote-inbound-rtp","ssrc":2364213263,"kind":"audio","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Outbound_111","packetsLost":0,"jitter":0.0033541666666666668,"localId":"RTCOutboundRTPAudioStream_2364213263","roundTripTime":0.001},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197603173,"jitter":0.018422222222222222},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":151961,"packetsSent":320,"bytesReceived":384592,"packetsReceived":589},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197603685},1605197603699] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":2.7501771532555294e-7,"totalSamplesDuration":3.709999999999965},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0,"requestsSent":4},"RTCIceCandidatePair_MxIlELq+_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_MxIlELq+_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":246597,"bytesReceived":83322,"totalRoundTripTime":0.293,"currentRoundTripTime":0.049,"requestsReceived":4,"responsesReceived":5,"responsesSent":4,"consentRequestsSent":4},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0,"requestsSent":4},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0,"requestsSent":4},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_MxIlELq+":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"packetsReceived":81,"bytesReceived":3465,"headerBytesReceived":1944,"lastPacketReceivedTimestamp":275606.728,"jitter":0.018,"audioLevel":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":3901,"packetsReceived":83,"bytesReceived":69580,"headerBytesReceived":1992,"lastPacketReceivedTimestamp":275606.738,"framesReceived":45,"framesDecoded":44,"totalDecodeTime":0.065,"totalInterFrameDelay":1.6870000000000005,"totalSquaredInterFrameDelay":0.090229},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"audioLevel":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":1.692,"jitterBufferEmittedCount":43,"framesReceived":45,"framesDecoded":44},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":121},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":73,"bytesSent":3275,"headerBytesSent":1460},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0,"qpSum":2631,"packetsSent":163,"bytesSent":143467,"headerBytesSent":6824,"framesEncoded":37,"keyFramesEncoded":3,"totalEncodeTime":0.795,"framesPerSecond":24,"framesSent":37,"totalPacketSendDelay":5.372,"qualityLimitationResolutionChanges":2},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":2849,"packetsSent":89,"bytesSent":66647,"headerBytesSent":2808,"framesEncoded":42,"keyFramesEncoded":4,"totalEncodeTime":0.819,"framesSent":42,"totalPacketSendDelay":2.145,"qualityLimitationResolutionChanges":2},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":4,"qpSum":3487,"packetsSent":39,"bytesSent":11997,"headerBytesSent":936,"framesEncoded":42,"keyFramesEncoded":4,"totalEncodeTime":0.82,"framesSent":42,"totalPacketSendDelay":1.205,"qualityLimitationResolutionChanges":2},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197603588,"jitter":0.0003125},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197603588,"jitter":0.00006666666666666667,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197603588,"jitter":0.00013333333333333334,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197603588,"jitter":0.0002111111111111111,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":246597,"packetsSent":418,"bytesReceived":83322,"packetsReceived":222},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":31},"timestamp":1605197603746},1605197603752] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":3.088454158830689e-7,"totalSamplesDuration":5.919999999999918},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"totalRoundTripTime":0.004,"currentRoundTripTime":0.002,"requestsReceived":4,"responsesReceived":4,"responsesSent":4,"consentRequestsSent":3},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"responsesReceived":4,"consentRequestsSent":3},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0,"requestsSent":4},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":315262,"bytesReceived":780558,"availableOutgoingBitrate":744150,"requestsReceived":5,"responsesReceived":5,"responsesSent":5,"consentRequestsSent":4},"RTCIceCandidatePair_RTKTApnA_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_S5uPeCSO":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_mmPnX60S":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":211,"bytesReceived":8976,"headerBytesReceived":5064,"lastPacketReceivedTimestamp":275610.3,"jitterBufferDelay":21254.4,"jitterBufferEmittedCount":201600,"totalSamplesReceived":187520,"removedSamplesForAcceleration":14688,"audioLevel":3,"totalAudioEnergy":1.321813673767365e-7,"totalSamplesDuration":3.93999999999996},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":863,"bytesReceived":727230,"headerBytesReceived":21056,"lastPacketReceivedTimestamp":275610.3,"framesReceived":126,"framesDecoded":125,"keyFramesDecoded":6,"totalDecodeTime":0.193,"totalInterFrameDelay":3.9679999999999973,"totalSquaredInterFrameDelay":0.13741400000000004},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":21254.4,"jitterBufferEmittedCount":201600,"audioLevel":0.00009155552842799158,"totalAudioEnergy":1.321813673767365e-7,"totalSamplesReceived":187520,"totalSamplesDuration":3.93999999999996,"removedSamplesForAcceleration":14688},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":6.242,"jitterBufferEmittedCount":120,"framesReceived":126,"framesDecoded":125},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":125,"hugeFramesSent":4},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":209,"bytesSent":8641,"headerBytesSent":5016},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":338,"bytesSent":281645,"headerBytesSent":8500,"framesEncoded":125,"keyFramesEncoded":5,"totalEncodeTime":0.742,"framesSent":125,"hugeFramesSent":4,"totalPacketSendDelay":39.015},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197604875,"jitter":0.016733333333333333},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":315262,"packetsSent":643,"bytesReceived":780558,"packetsReceived":1184},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197605684},1605197605695] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":2.9977378032606866e-7,"totalSamplesDuration":5.709999999999923},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0,"requestsSent":4},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_MxIlELq+_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_MxIlELq+_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":247161,"bytesReceived":83850,"totalRoundTripTime":0.342,"responsesReceived":6,"consentRequestsSent":5},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0,"requestsSent":4},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0,"requestsSent":5},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_MxIlELq+":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"pliCount":1},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":5},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197605588},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197605588},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197605588},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197605588},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":247161,"packetsSent":429,"bytesReceived":83850,"packetsReceived":227},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197605744},1605197605752] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":5.657198600946237e-7,"totalSamplesDuration":7.919999999999876},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"currentRoundTripTime":0,"requestsReceived":5,"responsesReceived":5,"responsesSent":5,"consentRequestsSent":4},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"requestsReceived":4,"responsesSent":4},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0,"requestsSent":4},"RTCIceCandidatePair_RTKTApnA_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":514293,"bytesReceived":1177748,"availableOutgoingBitrate":866841,"requestsReceived":6,"responsesReceived":6,"responsesSent":6,"consentRequestsSent":5},"RTCIceCandidatePair_RTKTApnA_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_S5uPeCSO":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_mmPnX60S":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":311,"bytesReceived":12852,"headerBytesReceived":7464,"lastPacketReceivedTimestamp":275612.296,"jitterBufferDelay":24326.4,"jitterBufferEmittedCount":297600,"totalSamplesReceived":283520,"totalAudioEnergy":1.4710206569533468e-7,"totalSamplesDuration":5.939999999999918},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":1327,"bytesReceived":1098810,"headerBytesReceived":32344,"lastPacketReceivedTimestamp":275612.296,"framesReceived":186,"framesDecoded":185,"keyFramesDecoded":8,"totalDecodeTime":0.226,"totalInterFrameDelay":5.971999999999999,"totalSquaredInterFrameDelay":0.20545799999999995},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":24326.4,"jitterBufferEmittedCount":297600,"totalAudioEnergy":1.4710206569533468e-7,"totalSamplesReceived":283520,"totalSamplesDuration":5.939999999999918},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":9.498,"jitterBufferEmittedCount":180,"framesReceived":186,"framesDecoded":185},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":185,"hugeFramesSent":5},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":309,"bytesSent":13377,"headerBytesSent":7416},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":561,"bytesSent":462316,"headerBytesSent":14020,"framesEncoded":185,"keyFramesEncoded":7,"totalEncodeTime":1.088,"framesSent":185,"hugeFramesSent":5,"totalPacketSendDelay":52.18},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197607335,"jitter":0.02371111111111111},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":514293,"packetsSent":1013,"bytesReceived":1177748,"packetsReceived":1799},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197607684},1605197607694] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":5.635776874271588e-7,"totalSamplesDuration":7.70999999999988},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_MxIlELq+_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_MxIlELq+_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":247573,"bytesReceived":84346,"totalRoundTripTime":0.398,"currentRoundTripTime":0.056,"requestsReceived":5,"responsesReceived":7,"responsesSent":5,"consentRequestsSent":6},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_MxIlELq+":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"frameWidth":0,"frameHeight":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197607588},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197607588},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197607588},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197607588},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":247573,"packetsSent":438,"bytesReceived":84346,"packetsReceived":231},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197607745},1605197607751] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":7.024556728382763e-7,"totalSamplesDuration":9.919999999999833},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"totalRoundTripTime":0.003,"currentRoundTripTime":0.002,"requestsReceived":5,"responsesReceived":5,"responsesSent":5,"consentRequestsSent":4},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_RTKTApnA_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":744347,"bytesReceived":1577015,"totalRoundTripTime":0.014,"currentRoundTripTime":0.001,"availableOutgoingBitrate":1013163,"requestsReceived":7,"responsesReceived":7,"responsesSent":7,"consentRequestsSent":6},"RTCIceCandidatePair_RTKTApnA_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_S5uPeCSO":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_mmPnX60S":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":411,"bytesReceived":16859,"headerBytesReceived":9864,"lastPacketReceivedTimestamp":275614.296,"jitterBufferDelay":27379.2,"jitterBufferEmittedCount":393600,"totalSamplesReceived":379520,"audioLevel":4,"totalAudioEnergy":2.049407277168633e-7,"totalSamplesDuration":7.939999999999875},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":1782,"bytesReceived":1472542,"headerBytesReceived":43416,"lastPacketReceivedTimestamp":275614.296,"framesReceived":246,"framesDecoded":245,"keyFramesDecoded":10,"totalDecodeTime":0.252,"totalInterFrameDelay":7.971999999999999,"totalSquaredInterFrameDelay":0.27321599999999996},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":27379.2,"jitterBufferEmittedCount":393600,"audioLevel":0.00012207403790398877,"totalAudioEnergy":2.049407277168633e-7,"totalSamplesReceived":379520,"totalSamplesDuration":7.939999999999875},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":12.712,"jitterBufferEmittedCount":240,"framesReceived":246,"framesDecoded":245},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":245},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":409,"bytesSent":17587,"headerBytesSent":9816},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":819,"bytesSent":673506,"headerBytesSent":20364,"framesEncoded":245,"keyFramesEncoded":9,"totalEncodeTime":1.422,"framesSent":245,"totalPacketSendDelay":65.558},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197609559,"jitter":0.0029375},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197609286,"jitter":0.023088888888888888},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":744347,"packetsSent":1416,"bytesReceived":1577015,"packetsReceived":2405},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197609685},1605197609696] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":7.022321417773221e-7,"totalSamplesDuration":9.709999999999837},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0,"requestsSent":5},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_MxIlELq+_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_MxIlELq+_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":248149,"bytesReceived":84842,"requestsReceived":6,"responsesSent":6},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0,"requestsSent":6},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_MxIlELq+":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197609588},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197609588},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197609588},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197609588},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":248149,"packetsSent":449,"bytesReceived":84842,"packetsReceived":235},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197609744},1605197609751] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":7.348117939111934e-7,"totalSamplesDuration":11.91999999999979},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"totalRoundTripTime":0.007,"currentRoundTripTime":0.003,"requestsReceived":6,"responsesReceived":6,"responsesSent":6,"consentRequestsSent":5},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"totalRoundTripTime":0.004,"currentRoundTripTime":0.001,"responsesReceived":6,"consentRequestsSent":5},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":1009867,"bytesReceived":1969845,"totalRoundTripTime":0.015,"availableOutgoingBitrate":1180870,"requestsReceived":8,"responsesReceived":8,"responsesSent":8,"consentRequestsSent":7},"RTCIceCandidatePair_RTKTApnA_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_S5uPeCSO_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_mmPnX60S_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_S5uPeCSO":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCIceCandidate_mmPnX60S":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":511,"bytesReceived":20886,"headerBytesReceived":12264,"lastPacketReceivedTimestamp":275616.295,"jitterBufferDelay":30297.6,"jitterBufferEmittedCount":489600,"totalSamplesReceived":475520,"audioLevel":3,"totalAudioEnergy":2.303208169292087e-7,"totalSamplesDuration":9.939999999999833},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":2214,"bytesReceived":1840609,"headerBytesReceived":53936,"lastPacketReceivedTimestamp":275616.295,"framesReceived":306,"framesDecoded":305,"keyFramesDecoded":12,"totalDecodeTime":0.29,"totalInterFrameDelay":9.975000000000003,"totalSquaredInterFrameDelay":0.34131900000000004},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":30297.6,"jitterBufferEmittedCount":489600,"audioLevel":0.00009155552842799158,"totalAudioEnergy":2.303208169292087e-7,"totalSamplesReceived":475520,"totalSamplesDuration":9.939999999999833},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":15.896,"jitterBufferEmittedCount":300,"framesReceived":306,"framesDecoded":305},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":305},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":509,"bytesSent":21663,"headerBytesSent":12216},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":1128,"bytesSent":918440,"headerBytesSent":27932,"framesEncoded":305,"keyFramesEncoded":11,"totalEncodeTime":1.776,"framesSent":305,"totalPacketSendDelay":83.452},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197611235,"jitter":0.024444444444444446},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1009867,"packetsSent":1873,"bytesReceived":1969845,"packetsReceived":2987},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197611685},1605197611702] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":7.354917008882581e-7,"totalSamplesDuration":11.709999999999795},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":248653,"bytesReceived":85338,"totalRoundTripTime":0.448,"currentRoundTripTime":0.05,"responsesReceived":8,"consentRequestsSent":7},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0,"requestsSent":7},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197611597},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197611597,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197611597,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197611597,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":248653,"packetsSent":461,"bytesReceived":85338,"packetsReceived":239},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197611745},1605197611752] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":7.663576148881576e-7,"totalSamplesDuration":13.919999999999748},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0,"requestsSent":7},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"currentRoundTripTime":0,"requestsReceived":7,"responsesReceived":7,"responsesSent":7,"consentRequestsSent":6},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"requestsReceived":6,"responsesSent":6},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0,"requestsSent":6},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":1328564,"bytesReceived":2360922,"availableOutgoingBitrate":1374580},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":611,"bytesReceived":24990,"headerBytesReceived":14664,"lastPacketReceivedTimestamp":275618.298,"jitter":0.001,"jitterBufferDelay":33302.4,"jitterBufferEmittedCount":585600,"totalSamplesReceived":571520,"totalAudioEnergy":2.5610139929242575e-7,"totalSamplesDuration":11.93999999999979},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":2667,"bytesReceived":2206150,"headerBytesReceived":64976,"lastPacketReceivedTimestamp":275618.299,"framesReceived":366,"framesDecoded":365,"keyFramesDecoded":14,"totalDecodeTime":0.319,"totalInterFrameDelay":11.975000000000009,"totalSquaredInterFrameDelay":0.4091590000000005},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":33302.4,"jitterBufferEmittedCount":585600,"totalAudioEnergy":2.5610139929242575e-7,"totalSamplesReceived":571520,"totalSamplesDuration":11.93999999999979},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":19.043,"jitterBufferEmittedCount":360,"framesReceived":366,"framesDecoded":365},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":365},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":609,"bytesSent":25820,"headerBytesSent":14616},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":1506,"bytesSent":1214054,"headerBytesSent":37156,"framesEncoded":365,"keyFramesEncoded":13,"totalEncodeTime":2.124,"framesSent":365,"totalPacketSendDelay":103.912},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197612936,"jitter":0.023922222222222223},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1328564,"packetsSent":2400,"bytesReceived":2360922,"packetsReceived":3589},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197613685},1605197613695] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":7.63637986979899e-7,"totalSamplesDuration":13.709999999999752},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_RC8fROJw":{"timestamp":0},"RTCIceCandidatePair_DAqSguio_tTnfsok5":{"timestamp":0,"requestsSent":7},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":249129,"bytesReceived":85834,"totalRoundTripTime":0.497,"currentRoundTripTime":0.049,"requestsReceived":7,"responsesReceived":9,"responsesSent":7,"consentRequestsSent":8},"RTCIceCandidatePair_cDMDh8jn_RC8fROJw":{"timestamp":0,"requestsSent":7},"RTCIceCandidatePair_cDMDh8jn_tTnfsok5":{"timestamp":0,"requestsSent":7},"RTCIceCandidatePair_evmNlrJp_tTnfsok5":{"timestamp":0},"RTCIceCandidate_DAqSguio":{"timestamp":0},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCIceCandidate_cDMDh8jn":{"timestamp":0},"RTCIceCandidate_evmNlrJp":{"timestamp":0},"RTCIceCandidate_tTnfsok5":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197613596},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197613596},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197613596},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197613596,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":249129,"packetsSent":472,"bytesReceived":85834,"packetsReceived":243},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197613744},1605197613750] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":7.966740150298835e-7,"totalSamplesDuration":15.919999999999705},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_WfUa5C2W":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"currentRoundTripTime":0,"requestsReceived":7,"responsesReceived":7,"responsesSent":7,"consentRequestsSent":6},"RTCIceCandidatePair_AYIV3B/k_WfUa5C2W":{"timestamp":0,"requestsSent":7},"RTCIceCandidatePair_AYIV3B/k_b+UdmxOr":{"timestamp":0,"requestsSent":7},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":1690871,"bytesReceived":2758092,"currentRoundTripTime":0,"availableOutgoingBitrate":1601514,"requestsReceived":9,"responsesReceived":9,"responsesSent":9,"consentRequestsSent":8},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":711,"bytesReceived":29064,"headerBytesReceived":17064,"lastPacketReceivedTimestamp":275620.296,"jitter":0.002,"jitterBufferDelay":36297.6,"jitterBufferEmittedCount":681600,"totalSamplesReceived":667520,"totalAudioEnergy":2.7901333304008046e-7,"totalSamplesDuration":13.939999999999747},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":3120,"bytesReceived":2577742,"headerBytesReceived":76016,"lastPacketReceivedTimestamp":275620.296,"framesReceived":426,"framesDecoded":425,"keyFramesDecoded":16,"totalDecodeTime":0.356,"totalInterFrameDelay":13.97500000000001,"totalSquaredInterFrameDelay":0.4768730000000007},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":36297.6,"jitterBufferEmittedCount":681600,"totalAudioEnergy":2.7901333304008046e-7,"totalSamplesReceived":667520,"totalSamplesDuration":13.939999999999747},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":22.172,"jitterBufferEmittedCount":420,"framesReceived":426,"framesDecoded":425},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":425,"hugeFramesSent":6},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":709,"bytesSent":29935,"headerBytesSent":17016},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":1929,"bytesSent":1551664,"headerBytesSent":47492,"framesEncoded":425,"keyFramesEncoded":15,"totalEncodeTime":2.474,"framesSent":425,"hugeFramesSent":6,"totalPacketSendDelay":129.709},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197615116,"jitter":0.023444444444444445,"roundTripTime":0.002},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1690871,"packetsSent":2973,"bytesReceived":2758092,"packetsReceived":4191},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197615685},1605197615693] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":7.987323635494896e-7,"totalSamplesDuration":15.70999999999971},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":249521,"bytesReceived":86330,"totalRoundTripTime":0.553,"currentRoundTripTime":0.056,"requestsReceived":8,"responsesReceived":10,"responsesSent":8,"consentRequestsSent":9},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197615596},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197615596,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197615596,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197615596},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":249521,"packetsSent":481,"bytesReceived":86330,"packetsReceived":247},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197615745},1605197615750] +["oniceconnectionstatechange","PC_0","completed",1605197617339] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":0.0000012378218776143783,"totalSamplesDuration":17.92},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"totalRoundTripTime":0.009,"currentRoundTripTime":0.002,"requestsReceived":8,"responsesReceived":8,"responsesSent":8,"consentRequestsSent":7},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"responsesReceived":8,"consentRequestsSent":7},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":2084284,"bytesReceived":3148890,"totalRoundTripTime":0.016,"currentRoundTripTime":0.001,"availableOutgoingBitrate":1870086,"requestsReceived":10,"responsesReceived":10,"responsesSent":10,"consentRequestsSent":9},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":811,"bytesReceived":33426,"headerBytesReceived":19464,"lastPacketReceivedTimestamp":275622.299,"jitterBufferDelay":39283.2,"jitterBufferEmittedCount":777600,"totalSamplesReceived":763520,"totalAudioEnergy":5.399206501429915e-7,"totalSamplesDuration":15.939999999999705},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":3553,"bytesReceived":2943200,"headerBytesReceived":86560,"lastPacketReceivedTimestamp":275622.299,"framesReceived":486,"framesDecoded":485,"keyFramesDecoded":18,"totalDecodeTime":0.386,"totalInterFrameDelay":15.977000000000011,"totalSquaredInterFrameDelay":0.5443910000000013},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":39283.2,"jitterBufferEmittedCount":777600,"totalAudioEnergy":5.399206501429915e-7,"totalSamplesReceived":763520,"totalSamplesDuration":15.939999999999705},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":25.328,"jitterBufferEmittedCount":480,"framesReceived":486,"framesDecoded":485},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":485},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":809,"bytesSent":34211,"headerBytesSent":19416},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":2364,"bytesSent":1919132,"headerBytesSent":58084,"framesEncoded":485,"keyFramesEncoded":17,"totalEncodeTime":2.834,"framesSent":485,"totalPacketSendDelay":149.322},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197616336,"jitter":0.0021666666666666666},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197617357,"jitter":0.023322222222222223,"roundTripTime":0.001},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2084284,"packetsSent":3558,"bytesReceived":3148890,"packetsReceived":4776},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197617685},1605197617694] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.002533036286507767,"totalAudioEnergy":0.000012618598490815714,"totalSamplesDuration":17.70999999999997},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":250025,"bytesReceived":86826,"totalRoundTripTime":0.61,"currentRoundTripTime":0.057,"responsesReceived":11,"consentRequestsSent":10},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197617598},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197617598,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197617598,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197617598,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":250025,"packetsSent":492,"bytesReceived":86826,"packetsReceived":251},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197617744},1605197617751] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.0004577776421399579,"totalAudioEnergy":0.000013343612173221795,"totalSamplesDuration":19.920000000000314},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":2339791,"bytesReceived":3401448,"totalRoundTripTime":0.017,"availableOutgoingBitrate":2007159,"requestsReceived":11,"responsesReceived":11,"responsesSent":11,"consentRequestsSent":10},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":911,"bytesReceived":37534,"headerBytesReceived":21864,"lastPacketReceivedTimestamp":275624.298,"jitterBufferDelay":42268.8,"jitterBufferEmittedCount":873600,"totalSamplesReceived":859520,"audioLevel":4,"totalAudioEnergy":0.00001212576838418006,"totalSamplesDuration":17.940000000000005},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":3813,"bytesReceived":3177078,"headerBytesReceived":92932,"lastPacketReceivedTimestamp":275624.275,"framesReceived":525,"framesPerSecond":15,"framesDecoded":525,"keyFramesDecoded":19,"totalDecodeTime":0.404,"totalInterFrameDelay":17.956000000000014,"totalSquaredInterFrameDelay":0.6539720000000013},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":42268.8,"jitterBufferEmittedCount":873600,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.00001212576838418006,"totalSamplesReceived":859520,"totalSamplesDuration":17.940000000000005},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":27.431,"jitterBufferEmittedCount":520,"framesReceived":525,"framesDecoded":525},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":524,"hugeFramesSent":7},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":909,"bytesSent":38338,"headerBytesSent":21816},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":2626,"bytesSent":2156633,"headerBytesSent":64520,"framesEncoded":524,"keyFramesEncoded":19,"totalEncodeTime":3.072,"framesPerSecond":15,"framesSent":524,"hugeFramesSent":7,"totalPacketSendDelay":164.963},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197619143,"jitter":0.018455555555555555},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2339791,"packetsSent":3965,"bytesReceived":3401448,"packetsReceived":5182},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197619685},1605197619693] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.0004577776421399579,"totalAudioEnergy":0.000013376853104744308,"totalSamplesDuration":19.71000000000028},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":250669,"bytesReceived":87322,"requestsReceived":9,"responsesSent":9},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197619598},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197619598,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197619598,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197619598,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":250669,"packetsSent":507,"bytesReceived":87322,"packetsReceived":255},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197619744},1605197619749] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.031708731345561084,"totalAudioEnergy":0.00011323448347102319,"totalSamplesDuration":21.920000000000627},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":2550379,"bytesReceived":3606793,"currentRoundTripTime":0,"requestsReceived":12,"responsesReceived":12,"responsesSent":12,"consentRequestsSent":11},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1011,"bytesReceived":40740,"headerBytesReceived":24264,"lastPacketReceivedTimestamp":275626.299,"jitterBufferDelay":45254.4,"jitterBufferEmittedCount":969600,"totalSamplesReceived":955520,"audioLevel":1,"totalAudioEnergy":0.000012144358717416095,"totalSamplesDuration":19.940000000000317},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":4047,"bytesReceived":3365653,"headerBytesReceived":98696,"lastPacketReceivedTimestamp":275626.267,"framesReceived":555,"framesDecoded":555,"keyFramesDecoded":20,"totalDecodeTime":0.421,"totalInterFrameDelay":19.968000000000018,"totalSquaredInterFrameDelay":0.7900800000000014},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":45254.4,"jitterBufferEmittedCount":969600,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.000012144358717416095,"totalSamplesReceived":955520,"totalSamplesDuration":19.940000000000317},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":28.98,"jitterBufferEmittedCount":550,"framesReceived":555,"framesDecoded":555},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":554},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1009,"bytesSent":43417,"headerBytesSent":24216},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":2853,"bytesSent":2349188,"headerBytesSent":70100,"framesEncoded":554,"keyFramesEncoded":20,"totalEncodeTime":3.245,"framesSent":554,"totalPacketSendDelay":177.527},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197621561,"jitter":0.0021875},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197621504,"jitter":0.016266666666666665},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2550379,"packetsSent":4328,"bytesReceived":3606793,"packetsReceived":5560},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197621684},1605197621700] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.031708731345561084,"totalAudioEnergy":0.00017309214323163658,"totalSamplesDuration":21.710000000000594},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":251089,"bytesReceived":87818,"totalRoundTripTime":0.661,"currentRoundTripTime":0.051,"requestsReceived":10,"responsesReceived":12,"responsesSent":10,"consentRequestsSent":11},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197621598},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197621598,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197621598,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197621598,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":251089,"packetsSent":516,"bytesReceived":87818,"packetsReceived":259},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197621745},1605197621750] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00018311105685598315,"totalAudioEnergy":0.0005728172506937045,"totalSamplesDuration":23.92000000000094},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":2759594,"bytesReceived":3805968},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1111,"bytesReceived":43940,"headerBytesReceived":26664,"lastPacketReceivedTimestamp":275628.296,"jitterBufferDelay":48288,"jitterBufferEmittedCount":1065600,"totalSamplesReceived":1051520,"totalAudioEnergy":0.000012146221476257517,"totalSamplesDuration":21.94000000000063},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":4267,"bytesReceived":3548692,"headerBytesReceived":104108,"lastPacketReceivedTimestamp":275628.262,"framesReceived":585,"framesDecoded":585,"keyFramesDecoded":21,"totalDecodeTime":0.43,"totalInterFrameDelay":21.973000000000013,"totalSquaredInterFrameDelay":0.9251690000000015},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":48288,"jitterBufferEmittedCount":1065600,"totalAudioEnergy":0.000012146221476257517,"totalSamplesReceived":1051520,"totalSamplesDuration":21.94000000000063},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":30.487,"jitterBufferEmittedCount":580,"framesReceived":585,"framesDecoded":585},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":584},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1109,"bytesSent":50466,"headerBytesSent":26616},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":3111,"bytesSent":2537266,"headerBytesSent":76424,"framesEncoded":584,"keyFramesEncoded":21,"totalEncodeTime":3.421,"framesSent":584,"totalPacketSendDelay":189.213},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197622755,"jitter":0.018488888888888888},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2759594,"packetsSent":4724,"bytesReceived":3805968,"packetsReceived":5922},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197623685},1605197623692] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.0006642343295708164,"totalSamplesDuration":23.710000000000907},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":251677,"bytesReceived":88314,"totalRoundTripTime":0.716,"currentRoundTripTime":0.055,"responsesReceived":13,"consentRequestsSent":12},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197623599},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197623599,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197623599,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197623599,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":251677,"packetsSent":529,"bytesReceived":88314,"packetsReceived":263},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197623745},1605197623749] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":0.0005728960919616595,"totalSamplesDuration":25.920000000001252},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":2966264,"bytesReceived":4010276,"requestsReceived":13,"responsesReceived":13,"responsesSent":13,"consentRequestsSent":12},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1211,"bytesReceived":47140,"headerBytesReceived":29064,"lastPacketReceivedTimestamp":275630.294,"jitter":0.001,"jitterBufferDelay":51321.6,"jitterBufferEmittedCount":1161600,"totalSamplesReceived":1147520,"totalAudioEnergy":0.000012148084235098939,"totalSamplesDuration":23.940000000000943},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":4502,"bytesReceived":3736196,"headerBytesReceived":109880,"lastPacketReceivedTimestamp":275630.268,"framesReceived":615,"framesDecoded":615,"keyFramesDecoded":22,"totalDecodeTime":0.432,"totalInterFrameDelay":23.978000000000023,"totalSquaredInterFrameDelay":1.0602380000000018},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":51321.6,"jitterBufferEmittedCount":1161600,"totalAudioEnergy":0.000012148084235098939,"totalSamplesReceived":1147520,"totalSamplesDuration":23.940000000000943},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":31.971,"jitterBufferEmittedCount":610,"framesReceived":615,"framesDecoded":615},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":614},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1209,"bytesSent":58566,"headerBytesSent":29016},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":3342,"bytesSent":2722630,"headerBytesSent":82116,"framesEncoded":614,"keyFramesEncoded":22,"totalEncodeTime":3.592,"framesSent":614,"totalPacketSendDelay":198.472},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197625243,"jitter":0.016255555555555554},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2966264,"packetsSent":5093,"bytesReceived":4010276,"packetsReceived":6302},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197625685},1605197625694] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00018311105685598315,"totalAudioEnergy":0.0006643199512809547,"totalSamplesDuration":25.71000000000122},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":252237,"bytesReceived":88810,"totalRoundTripTime":0.766,"currentRoundTripTime":0.05,"requestsReceived":11,"responsesReceived":14,"responsesSent":11,"consentRequestsSent":13},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197625599},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197625599,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197625599,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197625599,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":252237,"packetsSent":542,"bytesReceived":88810,"packetsReceived":267},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197625745},1605197625750] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.0005729720086982363,"totalSamplesDuration":27.920000000001565},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":3178931,"bytesReceived":4212555,"requestsReceived":14,"responsesReceived":14,"responsesSent":14,"consentRequestsSent":13},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1311,"bytesReceived":50340,"headerBytesReceived":31464,"lastPacketReceivedTimestamp":275632.297,"jitter":0.002,"jitterBufferDelay":54403.2,"jitterBufferEmittedCount":1257600,"totalSamplesReceived":1243520,"totalAudioEnergy":0.00001214994699394036,"totalSamplesDuration":25.940000000001255},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":4738,"bytesReceived":3921539,"headerBytesReceived":115692,"lastPacketReceivedTimestamp":275632.268,"framesReceived":645,"framesDecoded":644,"keyFramesDecoded":23,"totalDecodeTime":0.435,"totalInterFrameDelay":25.916000000000015,"totalSquaredInterFrameDelay":1.1907880000000022},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":54403.2,"jitterBufferEmittedCount":1257600,"totalAudioEnergy":0.00001214994699394036,"totalSamplesReceived":1243520,"totalSamplesDuration":25.940000000001255},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":33.441,"jitterBufferEmittedCount":640,"framesReceived":645,"framesDecoded":644},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":644},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1309,"bytesSent":66676,"headerBytesSent":31416},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":3595,"bytesSent":2913229,"headerBytesSent":88320,"framesEncoded":644,"keyFramesEncoded":23,"totalEncodeTime":3.754,"framesSent":644,"totalPacketSendDelay":207.625},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197626580,"jitter":0.002395833333333333},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197627675,"jitter":0.017555555555555557},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3178931,"packetsSent":5484,"bytesReceived":4212555,"packetsReceived":6684},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197627685},1605197627694] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.0006644043249426705,"totalSamplesDuration":27.710000000001532},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":252657,"bytesReceived":89306,"totalRoundTripTime":0.818,"currentRoundTripTime":0.052,"requestsReceived":12,"responsesReceived":15,"responsesSent":12,"consentRequestsSent":14},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197627599},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197627599,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197627599,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197627599,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":252657,"packetsSent":551,"bytesReceived":89306,"packetsReceived":271},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197627745},1605197627751] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.0005730198816004599,"totalSamplesDuration":29.920000000001878},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":3389286,"bytesReceived":4428837,"requestsReceived":15,"responsesReceived":15,"responsesSent":15,"consentRequestsSent":14},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1411,"bytesReceived":53540,"headerBytesReceived":33864,"lastPacketReceivedTimestamp":275634.295,"jitterBufferDelay":57417.6,"jitterBufferEmittedCount":1353600,"totalSamplesReceived":1339520,"totalAudioEnergy":0.000012151809752781783,"totalSamplesDuration":27.940000000001568},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":4979,"bytesReceived":4120901,"headerBytesReceived":121608,"lastPacketReceivedTimestamp":275634.272,"framesReceived":675,"framesDecoded":674,"keyFramesDecoded":24,"totalDecodeTime":0.438,"totalInterFrameDelay":27.91900000000002,"totalSquaredInterFrameDelay":1.3255710000000023},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":57417.6,"jitterBufferEmittedCount":1353600,"totalAudioEnergy":0.000012151809752781783,"totalSamplesReceived":1339520,"totalSamplesDuration":27.940000000001568},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":34.82,"jitterBufferEmittedCount":669,"framesReceived":675,"framesDecoded":674},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":674},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1409,"bytesSent":74846,"headerBytesSent":33816},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":3845,"bytesSent":3101570,"headerBytesSent":94452,"framesEncoded":674,"keyFramesEncoded":24,"totalEncodeTime":3.922,"framesSent":674,"totalPacketSendDelay":215.949},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197629380,"jitter":0.01633333333333333},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3389286,"packetsSent":5872,"bytesReceived":4428837,"packetsReceived":7068},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197629685},1605197629693] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00015259254737998596,"totalAudioEnergy":0.0006644526355932205,"totalSamplesDuration":29.710000000001845},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":253189,"bytesReceived":89802},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197629600},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197629600},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197629600},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197629600},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":253189,"packetsSent":563,"bytesReceived":89802,"packetsReceived":275},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197629745},1605197629750] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.0003051850947599719,"totalAudioEnergy":0.0005731666856247418,"totalSamplesDuration":32.590000000002085},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":3682318,"bytesReceived":4705399,"requestsReceived":16,"responsesReceived":16,"responsesSent":16,"consentRequestsSent":15},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1545,"bytesReceived":57828,"headerBytesReceived":37080,"lastPacketReceivedTimestamp":275636.975,"jitterBufferDelay":61411.2,"jitterBufferEmittedCount":1481280,"totalSamplesReceived":1467680,"totalAudioEnergy":0.000012154296535835081,"totalSamplesDuration":30.610000000001985},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":5282,"bytesReceived":4375421,"headerBytesReceived":129064,"lastPacketReceivedTimestamp":275636.938,"framesReceived":715,"framesDecoded":714,"keyFramesDecoded":26,"totalDecodeTime":0.439,"totalInterFrameDelay":30.590000000000007,"totalSquaredInterFrameDelay":1.5054660000000035},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":61411.2,"jitterBufferEmittedCount":1481280,"totalAudioEnergy":0.000012154296535835081,"totalSamplesReceived":1467680,"totalSamplesDuration":30.610000000001985},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":36.7,"jitterBufferEmittedCount":709,"framesReceived":715,"framesDecoded":714},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":714},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1542,"bytesSent":85619,"headerBytesSent":37008},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":4160,"bytesSent":3366125,"headerBytesSent":102212,"framesEncoded":714,"keyFramesEncoded":25,"totalEncodeTime":4.144,"framesPerSecond":14,"framesSent":714,"totalPacketSendDelay":228.136},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197631973,"jitter":0.00225},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197631739,"jitter":0.018333333333333333},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3682318,"packetsSent":6368,"bytesReceived":4705399,"packetsReceived":7563},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197632353},1605197632398] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00018311105685598315,"totalAudioEnergy":0.0006645865586401155,"totalSamplesDuration":32.32000000000214},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":253749,"bytesReceived":90422,"totalRoundTripTime":0.867,"currentRoundTripTime":0.049,"requestsReceived":13,"responsesReceived":16,"responsesSent":13,"consentRequestsSent":15},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197632100},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197632100},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197632100},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197632100},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":253749,"packetsSent":576,"bytesReceived":90422,"packetsReceived":280},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197632354},1605197632402] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00018311105685598315,"totalAudioEnergy":0.0005734052212081574,"totalSamplesDuration":34.59000000000169},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":3952373,"bytesReceived":4978974,"requestsReceived":17,"responsesReceived":17,"responsesSent":17,"consentRequestsSent":16},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1645,"bytesReceived":61028,"headerBytesReceived":39480,"lastPacketReceivedTimestamp":275638.976,"jitterBufferDelay":64425.6,"jitterBufferEmittedCount":1577280,"totalSamplesReceived":1563680,"totalAudioEnergy":0.000012156159294676503,"totalSamplesDuration":32.61000000000208},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":5575,"bytesReceived":4630290,"headerBytesReceived":136244,"lastPacketReceivedTimestamp":275638.966,"framesReceived":756,"framesPerSecond":26,"framesDecoded":755,"keyFramesDecoded":27,"totalDecodeTime":0.445,"totalInterFrameDelay":32.635999999999974,"totalSquaredInterFrameDelay":1.6196340000000022},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":64425.6,"jitterBufferEmittedCount":1577280,"totalAudioEnergy":0.000012156159294676503,"totalSamplesReceived":1563680,"totalSamplesDuration":32.61000000000208},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":38.598,"jitterBufferEmittedCount":750,"framesReceived":756,"framesDecoded":755},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":756},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1642,"bytesSent":93712,"headerBytesSent":39408},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":4445,"bytesSent":3612813,"headerBytesSent":109200,"framesEncoded":756,"keyFramesEncoded":26,"totalEncodeTime":4.378,"framesPerSecond":26,"framesSent":756,"totalPacketSendDelay":239.278},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197634161,"jitter":0.019422222222222223},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3952373,"packetsSent":6795,"bytesReceived":4978974,"packetsReceived":7998},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":27},"timestamp":1605197634357},1605197634367] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.0006647836478393131,"totalSamplesDuration":34.32000000000174},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":254309,"bytesReceived":90918,"totalRoundTripTime":0.919,"currentRoundTripTime":0.052,"requestsReceived":14,"responsesReceived":17,"responsesSent":14,"consentRequestsSent":16},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197634101},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197634101,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197634101,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197634101},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":254309,"packetsSent":589,"bytesReceived":90918,"packetsReceived":284},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":27},"timestamp":1605197634357},1605197634373] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00021362956633198035,"totalAudioEnergy":0.0005734703805124233,"totalSamplesDuration":36.59000000000129},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":4334693,"bytesReceived":5355250,"availableOutgoingBitrate":2216446},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1745,"bytesReceived":64228,"headerBytesReceived":41880,"lastPacketReceivedTimestamp":275640.976,"jitterBufferDelay":67382.4,"jitterBufferEmittedCount":1673280,"totalSamplesReceived":1659680,"totalAudioEnergy":0.000012158022053517925,"totalSamplesDuration":34.61000000000168},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":5980,"bytesReceived":4983266,"headerBytesReceived":146116,"lastPacketReceivedTimestamp":275640.953,"framesReceived":816,"framesPerSecond":29,"framesDecoded":815,"keyFramesDecoded":29,"totalDecodeTime":0.468,"totalInterFrameDelay":34.62599999999987,"totalSquaredInterFrameDelay":1.6865859999999986},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":67382.4,"jitterBufferEmittedCount":1673280,"totalAudioEnergy":0.000012158022053517925,"totalSamplesReceived":1659680,"totalSamplesDuration":34.61000000000168},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":41.434,"jitterBufferEmittedCount":810,"framesReceived":816,"framesDecoded":815},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":816},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1742,"bytesSent":101819,"headerBytesSent":41808},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":4858,"bytesSent":3966918,"headerBytesSent":119264,"framesEncoded":816,"keyFramesEncoded":28,"totalEncodeTime":4.712,"framesPerSecond":29,"framesSent":816,"totalPacketSendDelay":257.34},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197635472,"jitter":0.002895833333333333},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197635571,"jitter":0.01898888888888889},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":4334693,"packetsSent":7357,"bytesReceived":5355250,"packetsReceived":8556},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197636356},1605197636366] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00021362956633198035,"totalAudioEnergy":0.0006648548424822261,"totalSamplesDuration":36.32000000000134},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":254701,"bytesReceived":91414,"totalRoundTripTime":0.969,"currentRoundTripTime":0.05,"responsesReceived":18,"consentRequestsSent":17},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197636101},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197636101,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197636101,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197636101},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":254701,"packetsSent":598,"bytesReceived":91414,"packetsReceived":288},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197636356},1605197636371] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.0005798516800439467,"totalAudioEnergy":0.0005736720614121697,"totalSamplesDuration":38.59000000000089},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":4742409,"bytesReceived":5752508,"availableOutgoingBitrate":2456278,"requestsReceived":18,"responsesReceived":18,"responsesSent":18,"consentRequestsSent":17},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1845,"bytesReceived":67428,"headerBytesReceived":44280,"lastPacketReceivedTimestamp":275642.981,"jitterBufferDelay":70396.8,"jitterBufferEmittedCount":1769280,"totalSamplesReceived":1755680,"totalAudioEnergy":0.000012159884812359347,"totalSamplesDuration":36.610000000001286},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":6463,"bytesReceived":5354792,"headerBytesReceived":157860,"lastPacketReceivedTimestamp":275642.954,"framesReceived":876,"framesPerSecond":30,"framesDecoded":875,"keyFramesDecoded":31,"totalDecodeTime":0.482,"totalInterFrameDelay":36.62199999999981,"totalSquaredInterFrameDelay":1.754239999999995},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":70396.8,"jitterBufferEmittedCount":1769280,"totalAudioEnergy":0.000012159884812359347,"totalSamplesReceived":1755680,"totalSamplesDuration":36.610000000001286},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":44.223,"jitterBufferEmittedCount":870,"framesReceived":876,"framesDecoded":875},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":876},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1842,"bytesSent":109919,"headerBytesSent":44208},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":5330,"bytesSent":4344146,"headerBytesSent":130744,"framesEncoded":876,"keyFramesEncoded":30,"totalEncodeTime":5.046,"framesSent":876,"totalPacketSendDelay":278.379},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197638211,"jitter":0.014644444444444444},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":4742409,"packetsSent":7981,"bytesReceived":5752508,"packetsReceived":9188},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197638355},1605197638367] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.0003662221137119663,"totalAudioEnergy":0.0006650568866199451,"totalSamplesDuration":38.320000000000945},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":255317,"bytesReceived":91910,"totalRoundTripTime":1.018,"currentRoundTripTime":0.049,"requestsReceived":15,"responsesReceived":19,"responsesSent":15,"consentRequestsSent":18},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197638102},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197638102,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197638102,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197638102,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":255317,"packetsSent":612,"bytesReceived":91910,"packetsReceived":292},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197638356},1605197638374] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.0005737262211254775,"totalSamplesDuration":40.590000000000494},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":5130693,"bytesReceived":6146625,"totalRoundTripTime":0.019,"currentRoundTripTime":0.002,"availableOutgoingBitrate":2522114,"requestsReceived":19,"responsesReceived":19,"responsesSent":19,"consentRequestsSent":18},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":1945,"bytesReceived":70628,"headerBytesReceived":46680,"lastPacketReceivedTimestamp":275644.982,"jitterBufferDelay":73382.4,"jitterBufferEmittedCount":1865280,"totalSamplesReceived":1851680,"totalAudioEnergy":0.000012161747571200769,"totalSamplesDuration":38.61000000000089},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":6899,"bytesReceived":5724643,"headerBytesReceived":168476,"lastPacketReceivedTimestamp":275644.955,"framesReceived":936,"framesPerSecond":29,"framesDecoded":935,"keyFramesDecoded":33,"totalDecodeTime":0.514,"totalInterFrameDelay":38.62099999999973,"totalSquaredInterFrameDelay":1.8222309999999913},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":73382.4,"jitterBufferEmittedCount":1865280,"totalAudioEnergy":0.000012161747571200769,"totalSamplesReceived":1851680,"totalSamplesDuration":38.61000000000089},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":46.968,"jitterBufferEmittedCount":930,"framesReceived":936,"framesDecoded":935},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":936},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":1942,"bytesSent":117957,"headerBytesSent":46608},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":5759,"bytesSent":4703736,"headerBytesSent":141192,"framesEncoded":936,"keyFramesEncoded":32,"totalEncodeTime":5.386,"framesSent":936,"totalPacketSendDelay":299.793},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197639075,"jitter":0.002375},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197639307,"jitter":0.0138},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":5130693,"packetsSent":8559,"bytesReceived":6146625,"packetsReceived":9775},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197640357},1605197640369] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.0006651089600433505,"totalSamplesDuration":40.32000000000055},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":255737,"bytesReceived":92406,"totalRoundTripTime":1.068,"currentRoundTripTime":0.05,"requestsReceived":16,"responsesReceived":20,"responsesSent":16,"consentRequestsSent":19},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197640102},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197640102},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197640102},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197640102},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":255737,"packetsSent":622,"bytesReceived":92406,"packetsReceived":296},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197640357},1605197640374] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00015259254737998596,"totalAudioEnergy":0.0005737408717237576,"totalSamplesDuration":42.590000000000096},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0,"totalRoundTripTime":0.01,"currentRoundTripTime":0.001,"requestsReceived":9,"responsesReceived":9,"responsesSent":9,"consentRequestsSent":8},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"requestsReceived":8,"responsesSent":8},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":5532094,"bytesReceived":6529082,"totalRoundTripTime":0.02,"currentRoundTripTime":0.001,"availableOutgoingBitrate":2594389,"requestsReceived":20,"responsesReceived":20,"responsesSent":20,"consentRequestsSent":19},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2045,"bytesReceived":73828,"headerBytesReceived":49080,"lastPacketReceivedTimestamp":275646.974,"jitterBufferDelay":76377.6,"jitterBufferEmittedCount":1961280,"totalSamplesReceived":1947680,"totalAudioEnergy":0.00001216361033004219,"totalSamplesDuration":40.61000000000049},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":7370,"bytesReceived":6081686,"headerBytesReceived":179948,"lastPacketReceivedTimestamp":275646.951,"framesReceived":996,"framesDecoded":995,"keyFramesDecoded":35,"totalDecodeTime":0.556,"totalInterFrameDelay":40.61999999999969,"totalSquaredInterFrameDelay":1.8903099999999877},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":76377.6,"jitterBufferEmittedCount":1961280,"totalAudioEnergy":0.00001216361033004219,"totalSamplesReceived":1947680,"totalSamplesDuration":40.61000000000049},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":49.71,"jitterBufferEmittedCount":990,"framesReceived":996,"framesDecoded":995},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":996},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2042,"bytesSent":126119,"headerBytesSent":49008},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":6230,"bytesSent":5074749,"headerBytesSent":152648,"framesEncoded":996,"keyFramesEncoded":34,"totalEncodeTime":5.72,"framesSent":996,"totalPacketSendDelay":321.253},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197642328,"jitter":0.01248888888888889},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":5532094,"packetsSent":9180,"bytesReceived":6529082,"packetsReceived":10396},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197642356},1605197642373] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00015259254737998596,"totalAudioEnergy":0.0006651255292832368,"totalSamplesDuration":42.32000000000015},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":256241,"bytesReceived":92902},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197642118},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197642118,"roundTripTime":0.066},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197642118,"roundTripTime":0.066},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197642118,"roundTripTime":0.072},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":256241,"packetsSent":633,"bytesReceived":92902,"packetsReceived":300},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197642356},1605197642378] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":0.0005737992226444562,"totalSamplesDuration":44.5899999999997},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0,"responsesReceived":9,"consentRequestsSent":8},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":5939750,"bytesReceived":6934587,"currentRoundTripTime":0,"availableOutgoingBitrate":2624917,"requestsReceived":21,"responsesReceived":21,"responsesSent":21,"consentRequestsSent":20},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2145,"bytesReceived":77028,"headerBytesReceived":51480,"lastPacketReceivedTimestamp":275648.98,"jitterBufferDelay":79353.6,"jitterBufferEmittedCount":2057280,"totalSamplesReceived":2043680,"totalAudioEnergy":0.000012165473088883613,"totalSamplesDuration":42.61000000000009},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":7834,"bytesReceived":6461995,"headerBytesReceived":191236,"lastPacketReceivedTimestamp":275648.95,"framesReceived":1056,"framesDecoded":1055,"keyFramesDecoded":37,"totalDecodeTime":0.576,"totalInterFrameDelay":42.62299999999962,"totalSquaredInterFrameDelay":1.9584009999999838},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":79353.6,"jitterBufferEmittedCount":2057280,"totalAudioEnergy":0.000012165473088883613,"totalSamplesReceived":2043680,"totalSamplesDuration":42.61000000000009},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":52.47,"jitterBufferEmittedCount":1050,"framesReceived":1056,"framesDecoded":1055},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":1056},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2142,"bytesSent":134219,"headerBytesSent":51408},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":6690,"bytesSent":5452577,"headerBytesSent":163856,"framesEncoded":1056,"keyFramesEncoded":36,"totalEncodeTime":6.056,"framesSent":1056,"totalPacketSendDelay":344.94},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197643630,"jitter":0.011255555555555555,"roundTripTime":0.002},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":5939750,"packetsSent":9788,"bytesReceived":6934587,"packetsReceived":11010},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197644356},1605197644365] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.0006651808066518499,"totalSamplesDuration":44.31999999999975},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":256661,"bytesReceived":93398,"totalRoundTripTime":1.118,"requestsReceived":17,"responsesReceived":21,"responsesSent":17,"consentRequestsSent":20},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197644103},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197644103,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197644103,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197644103,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":256661,"packetsSent":643,"bytesReceived":93398,"packetsReceived":304},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197644356},1605197644370] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.0003051850947599719,"totalAudioEnergy":0.000574061527030692,"totalSamplesDuration":46.5899999999993},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":6262571,"bytesReceived":7243856},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2245,"bytesReceived":80228,"headerBytesReceived":53880,"lastPacketReceivedTimestamp":275650.982,"jitterBufferDelay":82320,"jitterBufferEmittedCount":2153280,"totalSamplesReceived":2139680,"totalAudioEnergy":0.000012167335847725034,"totalSamplesDuration":44.609999999999694},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":8167,"bytesReceived":6750790,"headerBytesReceived":199364,"lastPacketReceivedTimestamp":275650.919,"framesReceived":1105,"framesPerSecond":18,"framesDecoded":1105,"keyFramesDecoded":39,"totalDecodeTime":0.59,"totalInterFrameDelay":44.59899999999956,"totalSquaredInterFrameDelay":2.0454109999999814},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":82320,"jitterBufferEmittedCount":2153280,"totalAudioEnergy":0.000012167335847725034,"totalSamplesReceived":2139680,"totalSamplesDuration":44.609999999999694},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":54.792,"jitterBufferEmittedCount":1100,"framesReceived":1105,"framesDecoded":1105},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":1105},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2242,"bytesSent":142309,"headerBytesSent":53808},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":7023,"bytesSent":5749944,"headerBytesSent":172000,"framesEncoded":1105,"keyFramesEncoded":38,"totalEncodeTime":6.343,"framesPerSecond":18,"framesSent":1105,"totalPacketSendDelay":366.542},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197644756,"jitter":0.0025},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197645966,"jitter":0.01877777777777778,"roundTripTime":0.001},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":6262571,"packetsSent":10270,"bytesReceived":7243856,"packetsReceived":11491},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":19},"timestamp":1605197646357},1605197646365] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.0003051850947599719,"totalAudioEnergy":0.0006654300996675796,"totalSamplesDuration":46.32999999999935},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":257081,"bytesReceived":93894,"totalRoundTripTime":1.167,"currentRoundTripTime":0.049,"requestsReceived":18,"responsesReceived":22,"responsesSent":18,"consentRequestsSent":21},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197646104},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197646104,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197646104,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197646104,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":257081,"packetsSent":653,"bytesReceived":93894,"packetsReceived":308},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":19},"timestamp":1605197646357},1605197646371] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00021362956633198035,"totalAudioEnergy":0.0005742304140610338,"totalSamplesDuration":48.5899999999989},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":6465591,"bytesReceived":7459611,"totalRoundTripTime":0.021,"currentRoundTripTime":0.001,"requestsReceived":22,"responsesReceived":22,"responsesSent":22,"consentRequestsSent":21},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2345,"bytesReceived":83428,"headerBytesReceived":56280,"lastPacketReceivedTimestamp":275652.974,"jitterBufferDelay":85363.2,"jitterBufferEmittedCount":2249280,"totalSamplesReceived":2235680,"totalAudioEnergy":0.000012169198606566456,"totalSamplesDuration":46.609999999999296},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":8405,"bytesReceived":6949811,"headerBytesReceived":205224,"lastPacketReceivedTimestamp":275652.923,"framesReceived":1135,"framesPerSecond":15,"framesDecoded":1135,"keyFramesDecoded":40,"totalDecodeTime":0.595,"totalInterFrameDelay":46.607999999999564,"totalSquaredInterFrameDelay":2.1810339999999826},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":85363.2,"jitterBufferEmittedCount":2249280,"totalAudioEnergy":0.000012169198606566456,"totalSamplesReceived":2235680,"totalSamplesDuration":46.609999999999296},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":56.192,"jitterBufferEmittedCount":1130,"framesReceived":1135,"framesDecoded":1135},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":1135},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2342,"bytesSent":150419,"headerBytesSent":56208},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":7243,"bytesSent":5932122,"headerBytesSent":177412,"framesEncoded":1135,"keyFramesEncoded":39,"totalEncodeTime":6.519,"framesPerSecond":15,"framesSent":1135,"totalPacketSendDelay":382.387},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197647342,"jitter":0.013188888888888889},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":6465591,"packetsSent":10626,"bytesReceived":7459611,"packetsReceived":11870},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197648357},1605197648364] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00021362956633198035,"totalAudioEnergy":0.0006656541150458301,"totalSamplesDuration":48.319999999998956},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":257557,"bytesReceived":94390,"totalRoundTripTime":1.221,"currentRoundTripTime":0.054,"responsesReceived":23,"consentRequestsSent":22},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197648104},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197648104,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197648104,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197648104,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":257557,"packetsSent":664,"bytesReceived":94390,"packetsReceived":312},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197648357},1605197648371] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.0004272591326639607,"totalAudioEnergy":0.0005744754693003995,"totalSamplesDuration":50.589999999998504},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":6740689,"bytesReceived":7716075,"totalRoundTripTime":0.022,"requestsReceived":23,"responsesReceived":23,"responsesSent":23,"consentRequestsSent":22},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2445,"bytesReceived":86628,"headerBytesReceived":58680,"lastPacketReceivedTimestamp":275654.978,"jitterBufferDelay":88454.4,"jitterBufferEmittedCount":2345280,"totalSamplesReceived":2331680,"totalAudioEnergy":0.000012171061365407878,"totalSamplesDuration":48.6099999999989},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":8685,"bytesReceived":7187853,"headerBytesReceived":212092,"lastPacketReceivedTimestamp":275654.972,"framesReceived":1173,"framesPerSecond":23,"framesDecoded":1171,"keyFramesDecoded":41,"totalDecodeTime":0.616,"totalInterFrameDelay":48.62999999999954,"totalSquaredInterFrameDelay":2.3048899999999826},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":88454.4,"jitterBufferEmittedCount":2345280,"totalAudioEnergy":0.000012171061365407878,"totalSamplesReceived":2331680,"totalSamplesDuration":48.6099999999989},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":57.859,"jitterBufferEmittedCount":1166,"framesReceived":1173,"framesDecoded":1171},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":1172},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2442,"bytesSent":158498,"headerBytesSent":58608},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":7538,"bytesSent":6183567,"headerBytesSent":184640,"framesEncoded":1172,"keyFramesEncoded":40,"totalEncodeTime":6.742,"framesPerSecond":22,"framesSent":1172,"totalPacketSendDelay":401.134},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197650083,"jitter":0.0023541666666666667},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197650039,"jitter":0.019144444444444443,"roundTripTime":0.003},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":6740689,"packetsSent":11061,"bytesReceived":7716075,"packetsReceived":12295},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":22},"timestamp":1605197650353},1605197650361] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.001098666341135899,"totalAudioEnergy":0.0006660148569230355,"totalSamplesDuration":50.31999999999856},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":258005,"bytesReceived":94886,"totalRoundTripTime":1.274,"currentRoundTripTime":0.053,"requestsReceived":19,"responsesReceived":24,"responsesSent":19,"consentRequestsSent":23},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197650105},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197650105,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197650105,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197650105,"roundTripTime":0.056},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":258005,"packetsSent":674,"bytesReceived":94886,"packetsReceived":316},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":22},"timestamp":1605197650353},1605197650374] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.0005747335079688847,"totalSamplesDuration":52.589999999998106},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":7128881,"bytesReceived":8114465,"currentRoundTripTime":0,"requestsReceived":24,"responsesReceived":24,"responsesSent":24,"consentRequestsSent":23},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2545,"bytesReceived":89828,"headerBytesReceived":61080,"lastPacketReceivedTimestamp":275656.974,"jitter":0.001,"jitterBufferDelay":91545.6,"jitterBufferEmittedCount":2441280,"totalSamplesReceived":2427680,"totalAudioEnergy":0.0000121729241242493,"totalSamplesDuration":50.6099999999985},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":9121,"bytesReceived":7562125,"headerBytesReceived":222708,"lastPacketReceivedTimestamp":275656.968,"framesReceived":1233,"framesPerSecond":31,"framesDecoded":1231,"keyFramesDecoded":43,"totalDecodeTime":0.628,"totalInterFrameDelay":50.61999999999949,"totalSquaredInterFrameDelay":2.372163999999987},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":91545.6,"jitterBufferEmittedCount":2441280,"totalAudioEnergy":0.0000121729241242493,"totalSamplesReceived":2427680,"totalSamplesDuration":50.6099999999985},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":60.571,"jitterBufferEmittedCount":1226,"framesReceived":1233,"framesDecoded":1231},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":1232},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2542,"bytesSent":166539,"headerBytesSent":61008},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":7976,"bytesSent":6542658,"headerBytesSent":195304,"framesEncoded":1232,"keyFramesEncoded":42,"totalEncodeTime":7.082,"framesPerSecond":29,"framesSent":1232,"totalPacketSendDelay":419.8},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197652014,"jitter":0.014811111111111112,"roundTripTime":0.001},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":7128881,"packetsSent":11649,"bytesReceived":8114465,"packetsReceived":12880},"RTCVideoSource_2":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197652353},1605197652367] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.0006661985156309919,"totalSamplesDuration":52.31999999999816},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":258425,"bytesReceived":95382,"requestsReceived":20,"responsesSent":20},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197652105},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197652105},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197652105},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197652105},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":258425,"packetsSent":684,"bytesReceived":95382,"packetsReceived":320},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197652353},1605197652378] +["getstats","PC_0",{"RTCAudioSource_1":{"timestamp":0,"totalAudioEnergy":0.004036104209804352,"totalSamplesDuration":54.58999999999771},"RTCCertificate_21:05:E2:A5:F6:CB:9A:B9:78:2D:C2:F0:2E:E6:C2:F2:B5:F9:E2:DC:53:6F:AD:CF:37:3D:F9:2C:C9:50:A7:C3":{"timestamp":0},"RTCCertificate_30:DF:CA:DC:D3:ED:02:70:C6:78:57:49:DC:9E:1E:20:09:E3:E8:90:C4:67:AF:34:FD:03:BA:87:ED:5F:F6:2B":{"timestamp":0},"RTCCodec_audio_Inbound_0":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_105":{"timestamp":0},"RTCCodec_audio_Inbound_106":{"timestamp":0},"RTCCodec_audio_Inbound_110":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_112":{"timestamp":0},"RTCCodec_audio_Inbound_113":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Inbound_13":{"timestamp":0},"RTCCodec_audio_Inbound_8":{"timestamp":0},"RTCCodec_audio_Inbound_9":{"timestamp":0},"RTCCodec_audio_Outbound_0":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_105":{"timestamp":0},"RTCCodec_audio_Outbound_106":{"timestamp":0},"RTCCodec_audio_Outbound_110":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_112":{"timestamp":0},"RTCCodec_audio_Outbound_113":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_13":{"timestamp":0},"RTCCodec_audio_Outbound_8":{"timestamp":0},"RTCCodec_audio_Outbound_9":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_101":{"timestamp":0},"RTCCodec_video_Inbound_102":{"timestamp":0},"RTCCodec_video_Inbound_107":{"timestamp":0},"RTCCodec_video_Inbound_108":{"timestamp":0},"RTCCodec_video_Inbound_109":{"timestamp":0},"RTCCodec_video_Inbound_114":{"timestamp":0},"RTCCodec_video_Inbound_115":{"timestamp":0},"RTCCodec_video_Inbound_116":{"timestamp":0},"RTCCodec_video_Inbound_118":{"timestamp":0},"RTCCodec_video_Inbound_119":{"timestamp":0},"RTCCodec_video_Inbound_120":{"timestamp":0},"RTCCodec_video_Inbound_121":{"timestamp":0},"RTCCodec_video_Inbound_123":{"timestamp":0},"RTCCodec_video_Inbound_124":{"timestamp":0},"RTCCodec_video_Inbound_125":{"timestamp":0},"RTCCodec_video_Inbound_127":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Inbound_97":{"timestamp":0},"RTCCodec_video_Inbound_98":{"timestamp":0},"RTCCodec_video_Inbound_99":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_101":{"timestamp":0},"RTCCodec_video_Outbound_102":{"timestamp":0},"RTCCodec_video_Outbound_107":{"timestamp":0},"RTCCodec_video_Outbound_108":{"timestamp":0},"RTCCodec_video_Outbound_109":{"timestamp":0},"RTCCodec_video_Outbound_114":{"timestamp":0},"RTCCodec_video_Outbound_115":{"timestamp":0},"RTCCodec_video_Outbound_116":{"timestamp":0},"RTCCodec_video_Outbound_118":{"timestamp":0},"RTCCodec_video_Outbound_119":{"timestamp":0},"RTCCodec_video_Outbound_120":{"timestamp":0},"RTCCodec_video_Outbound_121":{"timestamp":0},"RTCCodec_video_Outbound_123":{"timestamp":0},"RTCCodec_video_Outbound_124":{"timestamp":0},"RTCCodec_video_Outbound_125":{"timestamp":0},"RTCCodec_video_Outbound_127":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCCodec_video_Outbound_97":{"timestamp":0},"RTCCodec_video_Outbound_98":{"timestamp":0},"RTCCodec_video_Outbound_99":{"timestamp":0},"RTCIceCandidatePair_7nQ+QEPW_b+UdmxOr":{"timestamp":0},"RTCIceCandidatePair_AYIV3B/k_FDmuDvJ3":{"timestamp":0},"RTCIceCandidatePair_RTKTApnA_WfUa5C2W":{"timestamp":0,"bytesSent":7525143,"bytesReceived":8512286,"availableOutgoingBitrate":2691822,"requestsReceived":25,"responsesReceived":25,"responsesSent":25,"consentRequestsSent":24},"RTCIceCandidate_7nQ+QEPW":{"timestamp":0},"RTCIceCandidate_AYIV3B/k":{"timestamp":0},"RTCIceCandidate_FDmuDvJ3":{"timestamp":0},"RTCIceCandidate_RTKTApnA":{"timestamp":0},"RTCIceCandidate_WfUa5C2W":{"timestamp":0},"RTCIceCandidate_b+UdmxOr":{"timestamp":0},"RTCInboundRTPAudioStream_250981789":{"timestamp":0,"packetsReceived":2645,"bytesReceived":93028,"headerBytesReceived":63480,"lastPacketReceivedTimestamp":275658.976,"jitter":0.002,"jitterBufferDelay":94675.2,"jitterBufferEmittedCount":2537280,"totalSamplesReceived":2523680,"totalAudioEnergy":0.000012174786883090722,"totalSamplesDuration":52.6099999999981},"RTCInboundRTPVideoStream_2864088180":{"timestamp":0,"packetsReceived":9585,"bytesReceived":7934702,"headerBytesReceived":233996,"lastPacketReceivedTimestamp":275658.973,"framesReceived":1293,"framesPerSecond":30,"framesDecoded":1291,"keyFramesDecoded":45,"totalDecodeTime":0.645,"totalInterFrameDelay":52.61599999999942,"totalSquaredInterFrameDelay":2.4396259999999916},"RTCMediaStreamTrack_receiver_5":{"timestamp":0,"jitterBufferDelay":94675.2,"jitterBufferEmittedCount":2537280,"totalAudioEnergy":0.000012174786883090722,"totalSamplesReceived":2523680,"totalSamplesDuration":52.6099999999981},"RTCMediaStreamTrack_receiver_6":{"timestamp":0,"jitterBufferDelay":63.255,"jitterBufferEmittedCount":1287,"framesReceived":1293,"framesDecoded":1291},"RTCMediaStreamTrack_sender_1":{"timestamp":0},"RTCMediaStreamTrack_sender_2":{"timestamp":0,"framesSent":1292},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_2"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_6"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-2":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_5"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_1"]},"RTCOutboundRTPAudioStream_2364213263":{"timestamp":0,"packetsSent":2642,"bytesSent":174639,"headerBytesSent":63408},"RTCOutboundRTPVideoStream_9891702":{"timestamp":0,"packetsSent":8421,"bytesSent":6909378,"headerBytesSent":206136,"framesEncoded":1292,"keyFramesEncoded":44,"totalEncodeTime":7.421,"framesSent":1292,"totalPacketSendDelay":441.493},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2364213263":{"timestamp":1605197654313,"jitter":0.0025208333333333333},"RTCRemoteInboundRtpVideoStream_9891702":{"timestamp":1605197654308,"jitter":0.014044444444444444},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":7525143,"packetsSent":12246,"bytesReceived":8512286,"packetsReceived":13496},"RTCVideoSource_2":{"timestamp":0},"timestamp":1605197654353},1605197654361] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.0041275692174664565,"totalSamplesDuration":54.31999999999776},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":258873,"bytesReceived":95878,"totalRoundTripTime":1.325,"currentRoundTripTime":0.051,"responsesReceived":25,"consentRequestsSent":24},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197654106},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197654106,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197654106,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197654106,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":258873,"packetsSent":694,"bytesReceived":95878,"packetsReceived":324},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197654353},1605197654367] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=group:BUNDLE audio video\r\nm=audio 10000 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:2566963332 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2566963332 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:2566963332 mslabel:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1\r\na=ssrc:2566963332 label:ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=rtcp-mux\r\nm=video 10000 RTP/SAVPF 100 96\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1527498116 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:1527498116 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1527498116 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:1527498116 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:2429519549 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2429519549 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:2429519549 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:2429519549 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc-group:FID 1527498116 2429519549\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197656157] +["close","PC_0",{},1605197656164] +["onsignalingstatechange","PC_1","have-remote-offer",1605197656213] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197656485] +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197656485] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004127588320058423,"totalSamplesDuration":56.43999999999734},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":259537,"bytesReceived":101685,"totalRoundTripTime":1.376,"requestsReceived":21,"responsesReceived":26,"responsesSent":21,"consentRequestsSent":25},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"packetsReceived":82,"bytesReceived":3531,"headerBytesReceived":1968,"lastPacketReceivedTimestamp":275660.898},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"pliCount":3,"qpSum":4633,"packetsReceived":91,"bytesReceived":74433,"headerBytesReceived":2184,"lastPacketReceivedTimestamp":275661.08,"framesReceived":52,"frameWidth":640,"frameHeight":360,"framesPerSecond":7,"framesDecoded":51,"keyFramesDecoded":7,"totalDecodeTime":0.075,"totalInterFrameDelay":1.7950000000000004,"totalSquaredInterFrameDelay":0.093447},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":1.775,"jitterBufferEmittedCount":50,"frameWidth":640,"frameHeight":360,"framesReceived":52,"framesDecoded":51},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":6},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197656111},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197656111,"roundTripTime":0.055},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197656111,"roundTripTime":0.055},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197656111,"roundTripTime":0.061},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":259537,"packetsSent":709,"bytesReceived":101685,"packetsReceived":338},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":31},"timestamp":1605197656472},1605197656514] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 5 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197656516] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 5 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197656520] +["onsignalingstatechange","PC_1","stable",1605197656533] +["setLocalDescriptionOnSuccess","PC_1",null,1605197656533] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=group:BUNDLE audio video\r\nm=audio 10000 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:2566963332 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2566963332 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:2566963332 mslabel:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1\r\na=ssrc:2566963332 label:ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:3489317734 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:3489317734 msid:9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1 171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1\r\na=rtcp-mux\r\nm=video 10000 RTP/SAVPF 100 96\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1030784244 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:1030784244 msid:4cab36cd-102c-45f9-abd2-19c6f7949920-1 ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:1527498116 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:1527498116 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1527498116 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:1527498116 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:2429519549 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2429519549 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:2429519549 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:2429519549 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:3246443449 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:3246443449 msid:4cab36cd-102c-45f9-abd2-19c6f7949920-1 ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc-group:FID 1527498116 2429519549\r\na=ssrc-group:FID 1030784244 3246443449\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197656593] +["onsignalingstatechange","PC_1","have-remote-offer",1605197656596] +["onaddstream","PC_1","9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1 audio:171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1",1605197656596] +["ontrack","PC_1","audio:171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1 stream:9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1",1605197656609] +["onaddstream","PC_1","4cab36cd-102c-45f9-abd2-19c6f7949920-1 video:ad468e38-fe4f-451f-a879-32973af3c6a5-1",1605197656609] +["ontrack","PC_1","video:ad468e38-fe4f-451f-a879-32973af3c6a5-1 stream:4cab36cd-102c-45f9-abd2-19c6f7949920-1",1605197656621] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197656621, 177] +--disconnect-- +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197656622] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 6 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197656630] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 6 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197656633] +["onsignalingstatechange","PC_1","stable",1605197656641] +["setLocalDescriptionOnSuccess","PC_1",null,1605197656642] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00006103701895199438,"totalAudioEnergy":0.0041275983882699905,"totalSamplesDuration":57.70999999999709},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":302402,"bytesReceived":156038,"totalRoundTripTime":1.425,"currentRoundTripTime":0.049,"availableOutgoingBitrate":3051067,"requestsReceived":22,"responsesReceived":27,"responsesSent":22,"consentRequestsSent":26},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"jitterBufferDelay":3292.8,"jitterBufferEmittedCount":69120,"totalSamplesReceived":124000,"concealedSamples":54007,"silentConcealedSamples":43363,"concealmentEvents":4,"removedSamplesForAcceleration":604,"totalAudioEnergy":2.910560689489158e-8,"totalSamplesDuration":2.669999999999987},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"type":"inbound-rtp","ssrc":3489317734,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_receiver_7","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Inbound_111","packetsReceived":46,"fecPacketsReceived":0,"fecPacketsDiscarded":0,"bytesReceived":3191,"headerBytesReceived":1104,"packetsLost":0,"lastPacketReceivedTimestamp":275662.359,"jitter":0.002,"jitterBufferDelay":1180.8,"jitterBufferEmittedCount":43200,"totalSamplesReceived":47200,"concealedSamples":4000,"silentConcealedSamples":3480,"concealmentEvents":1,"insertedSamplesForDeceleration":844,"removedSamplesForAcceleration":0,"audioLevel":195,"totalAudioEnergy":0.00007511442771555884,"totalSamplesDuration":1.1500000000000008},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"type":"inbound-rtp","ssrc":1030784244,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_receiver_8","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_video_Inbound_100","firCount":0,"pliCount":1,"nackCount":0,"qpSum":2728,"packetsReceived":27,"bytesReceived":8671,"headerBytesReceived":648,"packetsLost":0,"lastPacketReceivedTimestamp":275662.34,"framesReceived":27,"frameWidth":320,"frameHeight":180,"framesPerSecond":27,"framesDecoded":27,"keyFramesDecoded":2,"framesDropped":0,"totalDecodeTime":0.003,"totalInterFrameDelay":0.8590000000000005,"totalSquaredInterFrameDelay":0.030369000000000004,"decoderImplementation":"libvpx"},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":6480,"packetsReceived":134,"bytesReceived":110012,"headerBytesReceived":3216,"lastPacketReceivedTimestamp":275662.361,"framesReceived":80,"framesPerSecond":20,"framesDecoded":78,"keyFramesDecoded":9,"totalDecodeTime":0.107,"totalInterFrameDelay":3.0189999999999997,"totalSquaredInterFrameDelay":0.157695},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"jitterBufferDelay":3292.8,"jitterBufferEmittedCount":69120,"totalAudioEnergy":2.910560689489158e-8,"totalSamplesReceived":124000,"totalSamplesDuration":2.669999999999987,"concealedSamples":54007,"silentConcealedSamples":43363,"concealmentEvents":4,"removedSamplesForAcceleration":604},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":2.114,"jitterBufferEmittedCount":77,"framesReceived":80,"framesDecoded":78},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"type":"track","trackIdentifier":"171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1","remoteSource":true,"ended":false,"detached":false,"kind":"audio","jitterBufferDelay":1180.8,"jitterBufferEmittedCount":43200,"audioLevel":0.0059511093478194525,"totalAudioEnergy":0.00007511442771555884,"totalSamplesReceived":47200,"totalSamplesDuration":1.1500000000000008,"concealedSamples":4000,"silentConcealedSamples":3480,"concealmentEvents":1,"insertedSamplesForDeceleration":844,"removedSamplesForAcceleration":0},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"type":"track","trackIdentifier":"ad468e38-fe4f-451f-a879-32973af3c6a5-1","remoteSource":true,"ended":false,"detached":false,"kind":"video","jitterBufferDelay":0.601,"jitterBufferEmittedCount":26,"frameWidth":320,"frameHeight":180,"framesReceived":27,"framesDecoded":27,"framesDropped":0},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"frameWidth":640,"frameHeight":360,"framesSent":169},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"type":"stream","streamIdentifier":"4cab36cd-102c-45f9-abd2-19c6f7949920-1","trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"type":"stream","streamIdentifier":"9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1","trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":134,"bytesSent":4514,"headerBytesSent":2680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0,"qualityLimitationResolutionChanges":3},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"nackCount":8,"qpSum":4902,"packetsSent":132,"bytesSent":92232,"headerBytesSent":6080,"framesEncoded":66,"keyFramesEncoded":6,"totalEncodeTime":0.886,"frameWidth":640,"frameHeight":360,"framesPerSecond":19,"framesSent":66,"totalPacketSendDelay":3.906,"qualityLimitationResolutionChanges":3},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":7,"nackCount":8,"qpSum":5964,"packetsSent":63,"bytesSent":19310,"headerBytesSent":1512,"framesEncoded":66,"keyFramesEncoded":6,"totalEncodeTime":0.887,"frameWidth":320,"frameHeight":180,"framesSent":66,"totalPacketSendDelay":2.433,"qualityLimitationResolutionChanges":3},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197657607,"packetsLost":2,"jitter":0.0028541666666666667},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197657607,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197657607,"packetsLost":7,"jitter":0.00007777777777777778,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197657607,"packetsLost":2,"jitter":0.00012222222222222221,"roundTripTime":0.05},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":302402,"packetsSent":871,"bytesReceived":156038,"packetsReceived":502},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":18},"timestamp":1605197657744},1605197657752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.004127616894779118,"totalSamplesDuration":59.70999999999669},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":425923,"bytesReceived":263355,"availableOutgoingBitrate":3560844},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":220000,"concealedSamples":150007,"silentConcealedSamples":139363,"totalSamplesDuration":4.669999999999945},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":61,"bytesReceived":4218,"headerBytesReceived":1464,"lastPacketReceivedTimestamp":275662.673,"jitter":0.005,"jitterBufferDelay":1651.2,"jitterBufferEmittedCount":58560,"totalSamplesReceived":143200,"concealedSamples":83650,"silentConcealedSamples":74495,"concealmentEvents":2,"insertedSamplesForDeceleration":1226,"audioLevel":0,"totalAudioEnergy":0.0001162914290640537,"totalSamplesDuration":3.149999999999977},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":5670,"packetsReceived":82,"bytesReceived":30853,"headerBytesReceived":1968,"lastPacketReceivedTimestamp":275664.181,"framesReceived":82,"framesPerSecond":25,"framesDecoded":82,"totalDecodeTime":0.004,"totalInterFrameDelay":2.6909999999999976,"totalSquaredInterFrameDelay":0.09143700000000006},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":11,"headerBytesReceived":313,"lastPacketReceivedTimestamp":275664.363},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":7185,"packetsReceived":212,"bytesReceived":185351,"headerBytesReceived":5088,"lastPacketReceivedTimestamp":275664.306,"framesReceived":108,"frameWidth":320,"frameHeight":180,"framesPerSecond":14,"framesDecoded":107,"keyFramesDecoded":10,"totalDecodeTime":0.136,"totalInterFrameDelay":5.052000000000001,"totalSquaredInterFrameDelay":0.30525199999999986},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":220000,"totalSamplesDuration":4.669999999999945,"concealedSamples":150007,"silentConcealedSamples":139363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":3.298,"jitterBufferEmittedCount":106,"frameWidth":320,"frameHeight":180,"framesReceived":108,"framesDecoded":107},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":1651.2,"jitterBufferEmittedCount":58560,"audioLevel":0,"totalAudioEnergy":0.0001162914290640537,"totalSamplesReceived":143200,"totalSamplesDuration":3.149999999999977,"concealedSamples":83650,"silentConcealedSamples":74495,"concealmentEvents":2,"insertedSamplesForDeceleration":1226},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":1.756,"jitterBufferEmittedCount":81,"framesReceived":82,"framesDecoded":82},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":229},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":234,"bytesSent":6452,"headerBytesSent":4680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"nackCount":10,"qpSum":5719,"packetsSent":234,"bytesSent":182285,"headerBytesSent":10544,"framesEncoded":96,"keyFramesEncoded":7,"totalEncodeTime":0.977,"framesPerSecond":14,"framesSent":96,"totalPacketSendDelay":9.806},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":8,"nackCount":10,"qpSum":7651,"packetsSent":95,"bytesSent":37104,"headerBytesSent":2280,"framesEncoded":96,"keyFramesEncoded":7,"totalEncodeTime":0.979,"framesSent":96,"totalPacketSendDelay":4.398},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197659608,"jitter":0.0000625,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197659608},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197659608,"jitter":0.000044444444444444447},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197659608,"jitter":0.00007777777777777778},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":425923,"packetsSent":1159,"bytesReceived":263355,"packetsReceived":705},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":14},"timestamp":1605197659746},1605197659754] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00006103701895199438,"totalAudioEnergy":0.004127628965456466,"totalSamplesDuration":61.70999999999629},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":586215,"bytesReceived":287504,"totalRoundTripTime":1.475,"currentRoundTripTime":0.05,"availableOutgoingBitrate":4155449,"requestsReceived":23,"responsesReceived":28,"responsesSent":23,"consentRequestsSent":27},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":316000,"concealedSamples":246007,"silentConcealedSamples":235363,"totalSamplesDuration":6.669999999999902},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":149,"bytesReceived":10231,"headerBytesReceived":3576,"lastPacketReceivedTimestamp":275666.362,"jitterBufferDelay":5539.2,"jitterBufferEmittedCount":141120,"totalSamplesReceived":239200,"concealedSamples":97922,"silentConcealedSamples":86495,"concealmentEvents":4,"insertedSamplesForDeceleration":1615,"removedSamplesForAcceleration":1002,"audioLevel":157,"totalAudioEnergy":0.0004259989483664564,"totalSamplesDuration":5.149999999999935},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"pliCount":2,"qpSum":6953,"packetsReceived":101,"bytesReceived":38610,"headerBytesReceived":2424,"lastPacketReceivedTimestamp":275666.339,"framesReceived":100,"framesPerSecond":15,"framesDecoded":100,"keyFramesDecoded":3,"totalInterFrameDelay":4.857999999999997,"totalSquaredInterFrameDelay":1.2400259999999996},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":30,"headerBytesReceived":808,"lastPacketReceivedTimestamp":275664.875},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":7348,"packetsReceived":217,"bytesReceived":188179,"headerBytesReceived":5208,"lastPacketReceivedTimestamp":275664.839,"framesReceived":112,"framesDecoded":111,"totalDecodeTime":0.137,"totalInterFrameDelay":5.581000000000001,"totalSquaredInterFrameDelay":0.37539899999999987},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":316000,"totalSamplesDuration":6.669999999999902,"concealedSamples":246007,"silentConcealedSamples":235363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":3.459,"jitterBufferEmittedCount":110,"framesReceived":112,"framesDecoded":111},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":5539.2,"jitterBufferEmittedCount":141120,"audioLevel":0.004791405987731559,"totalAudioEnergy":0.0004259989483664564,"totalSamplesReceived":239200,"totalSamplesDuration":5.149999999999935,"concealedSamples":97922,"silentConcealedSamples":86495,"concealmentEvents":4,"insertedSamplesForDeceleration":1615,"removedSamplesForAcceleration":1002},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":2.134,"jitterBufferEmittedCount":99,"framesReceived":100,"framesDecoded":100},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":289},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":334,"bytesSent":8109,"headerBytesSent":6680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":6170,"packetsSent":351,"bytesSent":308520,"headerBytesSent":13352,"framesEncoded":126,"totalEncodeTime":1.062,"framesSent":126,"totalPacketSendDelay":16.934},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":8429,"packetsSent":126,"bytesSent":57664,"headerBytesSent":3024,"framesEncoded":126,"totalEncodeTime":1.066,"framesSent":126,"totalPacketSendDelay":6.147},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197661609,"jitter":0.00008333333333333333,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197661609,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197661609,"jitter":0.00006666666666666667,"roundTripTime":0.081},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197661609},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":586215,"packetsSent":1453,"bytesReceived":287504,"packetsReceived":877},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197661744},1605197661753] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00009155552842799158,"totalAudioEnergy":0.004127634097357148,"totalSamplesDuration":63.709999999995894},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":758346,"bytesReceived":317203,"totalRoundTripTime":1.528,"currentRoundTripTime":0.053,"availableOutgoingBitrate":4263500,"requestsReceived":24,"responsesReceived":29,"responsesSent":24,"consentRequestsSent":28},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":412000,"concealedSamples":342007,"silentConcealedSamples":331363,"totalSamplesDuration":8.66999999999986},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":249,"bytesReceived":17170,"headerBytesReceived":5976,"lastPacketReceivedTimestamp":275668.36,"jitter":0.004,"jitterBufferDelay":8793.6,"jitterBufferEmittedCount":238080,"totalSamplesReceived":335200,"removedSamplesForAcceleration":1535,"audioLevel":252,"totalAudioEnergy":0.002228977071132839,"totalSamplesDuration":7.149999999999892},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":8138,"packetsReceived":131,"bytesReceived":53930,"headerBytesReceived":3144,"lastPacketReceivedTimestamp":275668.344,"framesReceived":130,"framesDecoded":130,"totalDecodeTime":0.005,"totalInterFrameDelay":6.859999999999995,"totalSquaredInterFrameDelay":1.3737619999999993},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"pliCount":4},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":412000,"totalSamplesDuration":8.66999999999986,"concealedSamples":342007,"silentConcealedSamples":331363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":8793.6,"jitterBufferEmittedCount":238080,"audioLevel":0.0076906643879512925,"totalAudioEnergy":0.002228977071132839,"totalSamplesReceived":335200,"totalSamplesDuration":7.149999999999892,"removedSamplesForAcceleration":1535},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":2.764,"jitterBufferEmittedCount":129,"framesReceived":130,"framesDecoded":130},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":349},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":434,"bytesSent":9453,"headerBytesSent":8680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":6688,"packetsSent":476,"bytesSent":437533,"headerBytesSent":16352,"framesEncoded":156,"keyFramesEncoded":8,"totalEncodeTime":1.15,"framesSent":156,"totalPacketSendDelay":23.792},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":9,"qpSum":9075,"packetsSent":165,"bytesSent":86950,"headerBytesSent":3960,"framesEncoded":156,"keyFramesEncoded":8,"totalEncodeTime":1.157,"framesSent":156,"totalPacketSendDelay":8.155},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197663609,"jitter":0.0000625,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197663609},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197663609,"jitter":0.000044444444444444447,"roundTripTime":0.054},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197663609,"jitter":0.00006666666666666667},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":758346,"packetsSent":1763,"bytesReceived":317203,"packetsReceived":1047},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197663744},1605197663752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.0041276368635540924,"totalSamplesDuration":65.70999999999671},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":922989,"bytesReceived":346087,"totalRoundTripTime":1.577,"currentRoundTripTime":0.049,"responsesReceived":30,"consentRequestsSent":29},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":508000,"concealedSamples":438007,"silentConcealedSamples":427363,"totalSamplesDuration":10.669999999999817},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":349,"bytesReceived":23546,"headerBytesReceived":8376,"lastPacketReceivedTimestamp":275670.368,"jitterBufferDelay":11366.4,"jitterBufferEmittedCount":334080,"totalSamplesReceived":431200,"audioLevel":158,"totalAudioEnergy":0.0023594282801564213,"totalSamplesDuration":9.14999999999985},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":9179,"packetsReceived":161,"bytesReceived":68998,"headerBytesReceived":3864,"lastPacketReceivedTimestamp":275670.336,"framesReceived":160,"framesDecoded":160,"totalDecodeTime":0.007,"totalInterFrameDelay":8.861,"totalSquaredInterFrameDelay":1.5072569999999992},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":508000,"totalSamplesDuration":10.669999999999817,"concealedSamples":438007,"silentConcealedSamples":427363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":11366.4,"jitterBufferEmittedCount":334080,"audioLevel":0.004821924497207556,"totalAudioEnergy":0.0023594282801564213,"totalSamplesReceived":431200,"totalSamplesDuration":9.14999999999985},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":3.394,"jitterBufferEmittedCount":159,"framesReceived":160,"framesDecoded":160},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":409},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":534,"bytesSent":10653,"headerBytesSent":10680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":7111,"packetsSent":600,"bytesSent":565892,"headerBytesSent":19328,"framesEncoded":186,"totalEncodeTime":1.242,"framesSent":186,"totalPacketSendDelay":29.883},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":9690,"packetsSent":196,"bytesSent":109910,"headerBytesSent":4704,"framesEncoded":186,"totalEncodeTime":1.249,"framesSent":186,"totalPacketSendDelay":9.611},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197665609,"jitter":0.00008333333333333333},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197665609},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197665609,"jitter":0.000033333333333333335,"roundTripTime":0.053},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197665609,"jitter":0.0001,"roundTripTime":0.051},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":922989,"packetsSent":2065,"bytesReceived":346087,"packetsReceived":1217},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197665744},1605197665751] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00024414807580797754,"totalAudioEnergy":0.004129712153865413,"totalSamplesDuration":67.70999999999773},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"state":"in-progress","bytesSent":1083115,"bytesReceived":374752,"requestsReceived":25,"responsesSent":25,"consentRequestsSent":30},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":604000,"concealedSamples":534007,"silentConcealedSamples":523363,"totalSamplesDuration":12.669999999999774},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":449,"bytesReceived":30062,"headerBytesReceived":10776,"lastPacketReceivedTimestamp":275672.36,"jitter":0.002,"jitterBufferDelay":13910.4,"jitterBufferEmittedCount":430080,"totalSamplesReceived":527200,"audioLevel":942,"totalAudioEnergy":0.0028598566453021516,"totalSamplesDuration":11.149999999999807},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":10132,"packetsReceived":191,"bytesReceived":83763,"headerBytesReceived":4584,"lastPacketReceivedTimestamp":275672.343,"framesReceived":190,"framesDecoded":190,"totalDecodeTime":0.009,"totalInterFrameDelay":10.860000000000008,"totalSquaredInterFrameDelay":1.6404879999999988},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":604000,"totalSamplesDuration":12.669999999999774,"concealedSamples":534007,"silentConcealedSamples":523363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":13910.4,"jitterBufferEmittedCount":430080,"audioLevel":0.028748435926389357,"totalAudioEnergy":0.0028598566453021516,"totalSamplesReceived":527200,"totalSamplesDuration":11.149999999999807},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":4.024,"jitterBufferEmittedCount":189,"framesReceived":190,"framesDecoded":190},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":469},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":634,"bytesSent":12073,"headerBytesSent":12680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":7578,"packetsSent":717,"bytesSent":687543,"headerBytesSent":22136,"framesEncoded":216,"totalEncodeTime":1.326,"framesSent":216,"totalPacketSendDelay":35.278},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":10214,"packetsSent":230,"bytesSent":135045,"headerBytesSent":5520,"framesEncoded":216,"totalEncodeTime":1.335,"framesSent":216,"totalPacketSendDelay":11.117},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197667610,"roundTripTime":0.053},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197667610,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197667610,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197667610,"jitter":0.00005555555555555556},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1083115,"packetsSent":2362,"bytesReceived":374752,"packetsReceived":1386},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197667745},1605197667751] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.004129716978410876,"totalSamplesDuration":69.70999999999876},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"state":"succeeded","bytesSent":1245204,"bytesReceived":402756,"totalRoundTripTime":1.627,"currentRoundTripTime":0.05,"requestsReceived":26,"responsesReceived":31,"responsesSent":26},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":700000,"concealedSamples":630007,"silentConcealedSamples":619363,"totalSamplesDuration":14.669999999999732},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":549,"bytesReceived":36490,"headerBytesReceived":13176,"lastPacketReceivedTimestamp":275674.361,"jitter":0.005,"jitterBufferDelay":16617.6,"jitterBufferEmittedCount":525120,"totalSamplesReceived":623200,"insertedSamplesForDeceleration":2197,"audioLevel":287,"totalAudioEnergy":0.003081101616839376,"totalSamplesDuration":13.149999999999764},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":11027,"packetsReceived":221,"bytesReceived":97943,"headerBytesReceived":5304,"lastPacketReceivedTimestamp":275674.361,"framesReceived":220,"framesDecoded":220,"totalDecodeTime":0.011,"totalInterFrameDelay":12.865000000000013,"totalSquaredInterFrameDelay":1.7752049999999984},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":700000,"totalSamplesDuration":14.669999999999732,"concealedSamples":630007,"silentConcealedSamples":619363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":16617.6,"jitterBufferEmittedCount":525120,"audioLevel":0.008758812219611195,"totalAudioEnergy":0.003081101616839376,"totalSamplesReceived":623200,"totalSamplesDuration":13.149999999999764,"insertedSamplesForDeceleration":2197},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":4.654,"jitterBufferEmittedCount":219,"framesReceived":220,"framesDecoded":220},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":531},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":734,"bytesSent":14181,"headerBytesSent":14680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":8049,"packetsSent":837,"bytesSent":811627,"headerBytesSent":25016,"framesEncoded":247,"totalEncodeTime":1.409,"framesPerSecond":15,"framesSent":247,"totalPacketSendDelay":40.417},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":10714,"packetsSent":261,"bytesSent":159162,"headerBytesSent":6264,"framesEncoded":247,"totalEncodeTime":1.418,"framesSent":247,"totalPacketSendDelay":12.394},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197669610},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197669610},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197669610,"jitter":0.000011111111111111112,"roundTripTime":0.055},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197669610,"jitter":0.000022222222222222223,"roundTripTime":0.05},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1245204,"packetsSent":2657,"bytesReceived":402756,"packetsReceived":1555},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197669745},1605197669752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.0041297188411697815,"totalSamplesDuration":71.70999999999978},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":1410734,"bytesReceived":432208,"totalRoundTripTime":1.68,"currentRoundTripTime":0.053,"responsesReceived":32,"consentRequestsSent":31},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":796000,"concealedSamples":726007,"silentConcealedSamples":715363,"totalSamplesDuration":16.669999999999806},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":649,"bytesReceived":43106,"headerBytesReceived":15576,"lastPacketReceivedTimestamp":275676.358,"jitter":0.003,"jitterBufferDelay":21081.6,"jitterBufferEmittedCount":621120,"totalSamplesReceived":719200,"audioLevel":930,"totalAudioEnergy":0.0037367268338734773,"totalSamplesDuration":15.149999999999721},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":11773,"packetsReceived":251,"bytesReceived":113439,"headerBytesReceived":6024,"lastPacketReceivedTimestamp":275676.365,"framesReceived":250,"framesDecoded":250,"totalDecodeTime":0.014,"totalInterFrameDelay":14.86900000000002,"totalSquaredInterFrameDelay":1.9097169999999979},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":796000,"totalSamplesDuration":16.669999999999806,"concealedSamples":726007,"silentConcealedSamples":715363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":21081.6,"jitterBufferEmittedCount":621120,"audioLevel":0.02838221381267739,"totalAudioEnergy":0.0037367268338734773,"totalSamplesReceived":719200,"totalSamplesDuration":15.149999999999721},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":5.285,"jitterBufferEmittedCount":249,"framesReceived":250,"framesDecoded":250},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":589},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":834,"bytesSent":16334,"headerBytesSent":16680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":8501,"packetsSent":956,"bytesSent":937565,"headerBytesSent":27872,"framesEncoded":276,"totalEncodeTime":1.488,"framesPerSecond":14,"framesSent":276,"totalPacketSendDelay":45.609},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":11163,"packetsSent":293,"bytesSent":184905,"headerBytesSent":7032,"framesEncoded":276,"totalEncodeTime":1.498,"framesSent":276,"totalPacketSendDelay":13.743},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197671611,"jitter":0.0000625},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197671611},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197671611,"jitter":0.000033333333333333335,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197671611,"jitter":0.00006666666666666667},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1410734,"packetsSent":2953,"bytesReceived":432208,"packetsReceived":1723},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197671745},1605197671752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.0041297359412959984,"totalSamplesDuration":73.7100000000008},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":1574397,"bytesReceived":440446,"totalRoundTripTime":1.729,"currentRoundTripTime":0.049,"requestsReceived":27,"responsesReceived":33,"responsesSent":27,"consentRequestsSent":32},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":892000,"concealedSamples":822007,"silentConcealedSamples":811363,"totalSamplesDuration":18.67000000000012},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":711,"bytesReceived":45740,"headerBytesReceived":17064,"lastPacketReceivedTimestamp":275678.347,"jitter":0.006,"jitterBufferDelay":24691.2,"jitterBufferEmittedCount":675840,"totalSamplesReceived":815200,"concealedSamples":132040,"silentConcealedSamples":96674,"concealmentEvents":5,"insertedSamplesForDeceleration":8956,"audioLevel":4,"totalAudioEnergy":0.003966068072497027,"totalSamplesDuration":17.14999999999988},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":11800,"packetsReceived":252,"bytesReceived":114251,"headerBytesReceived":6048,"lastPacketReceivedTimestamp":275677.408,"framesReceived":251,"framesPerSecond":1,"framesDecoded":251,"totalInterFrameDelay":15.95800000000002,"totalSquaredInterFrameDelay":3.095637999999998},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":892000,"totalSamplesDuration":18.67000000000012,"concealedSamples":822007,"silentConcealedSamples":811363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":24691.2,"jitterBufferEmittedCount":675840,"audioLevel":0.00012207403790398877,"totalAudioEnergy":0.003966068072497027,"totalSamplesReceived":815200,"totalSamplesDuration":17.14999999999988,"concealedSamples":132040,"silentConcealedSamples":96674,"concealmentEvents":5,"insertedSamplesForDeceleration":8956},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":5.307,"jitterBufferEmittedCount":250,"framesReceived":251,"framesDecoded":251},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":649},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":934,"bytesSent":18702,"headerBytesSent":18680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":8960,"packetsSent":1077,"bytesSent":1063187,"headerBytesSent":30776,"framesEncoded":306,"totalEncodeTime":1.568,"framesSent":306,"totalPacketSendDelay":50.684},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":11604,"packetsSent":325,"bytesSent":209822,"headerBytesSent":7800,"framesEncoded":306,"totalEncodeTime":1.578,"framesSent":306,"totalPacketSendDelay":15.032},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197673612,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197673612},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197673612,"jitter":0.000044444444444444447,"roundTripTime":0.054},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197673612,"jitter":0.0001,"roundTripTime":0.052},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1574397,"packetsSent":3226,"bytesReceived":440446,"packetsReceived":1827},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197673744},1605197673752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00006103701895199438,"totalAudioEnergy":0.004129753311522245,"totalSamplesDuration":75.71000000000183},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":1750076,"bytesReceived":488954,"totalRoundTripTime":1.78,"currentRoundTripTime":0.051,"requestsReceived":28,"responsesReceived":34,"responsesSent":28,"consentRequestsSent":33},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":988000,"concealedSamples":918007,"silentConcealedSamples":907363,"totalSamplesDuration":20.67000000000043},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":812,"bytesReceived":49913,"headerBytesReceived":19488,"lastPacketReceivedTimestamp":275680.369,"jitter":0.004,"jitterBufferDelay":47568,"jitterBufferEmittedCount":760320,"totalSamplesReceived":911200,"insertedSamplesForDeceleration":21355,"audioLevel":7,"totalAudioEnergy":0.003966113859109385,"totalSamplesDuration":19.150000000000194},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":12238,"packetsReceived":295,"bytesReceived":150630,"headerBytesReceived":7080,"lastPacketReceivedTimestamp":275680.313,"framesReceived":281,"framesPerSecond":15,"framesDecoded":281,"totalDecodeTime":0.017,"totalInterFrameDelay":18.841000000000026,"totalSquaredInterFrameDelay":4.166494999999992},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":988000,"totalSamplesDuration":20.67000000000043,"concealedSamples":918007,"silentConcealedSamples":907363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":47568,"jitterBufferEmittedCount":760320,"audioLevel":0.00021362956633198035,"totalAudioEnergy":0.003966113859109385,"totalSamplesReceived":911200,"totalSamplesDuration":19.150000000000194,"insertedSamplesForDeceleration":21355},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":5.835,"jitterBufferEmittedCount":280,"framesReceived":281,"framesDecoded":281},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":709},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1034,"bytesSent":21163,"headerBytesSent":20680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":9445,"packetsSent":1208,"bytesSent":1195199,"headerBytesSent":33920,"framesEncoded":336,"keyFramesEncoded":9,"totalEncodeTime":1.65,"framesSent":336,"totalPacketSendDelay":56.291},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":10,"qpSum":12077,"packetsSent":363,"bytesSent":238616,"headerBytesSent":8712,"framesEncoded":336,"keyFramesEncoded":9,"totalEncodeTime":1.662,"framesSent":336,"totalPacketSendDelay":16.575},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197675616,"jitter":0.000041666666666666665,"roundTripTime":0.054},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197675616,"roundTripTime":0.055},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197675616,"jitter":0.000033333333333333335,"roundTripTime":0.061},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197675616,"jitter":0.00008888888888888889,"roundTripTime":0.057},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1750076,"packetsSent":3538,"bytesReceived":488954,"packetsReceived":2010},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197675745},1605197675751] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 4cab36cd-102c-45f9-abd2-19c6f7949920-1\r\na=group:BUNDLE audio video\r\nm=audio 10000 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:2566963332 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2566963332 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:2566963332 mslabel:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1\r\na=ssrc:2566963332 label:ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:3489317734 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:3489317734 msid:9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1 171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1\r\na=ssrc:3489317734 mslabel:9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1\r\na=ssrc:3489317734 label:171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1\r\na=ssrc:757648711 cname:KG0FoQGXUmoab4jl-1\r\na=ssrc:757648711 msid:8e471656-671a-4774-9269-c578d7885ceb-1 cde366ab-9d77-46e7-99ad-53211f7e7f11-1\r\na=rtcp-mux\r\nm=video 10000 RTP/SAVPF 100 96\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1030784244 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:1030784244 msid:4cab36cd-102c-45f9-abd2-19c6f7949920-1 ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:1030784244 mslabel:4cab36cd-102c-45f9-abd2-19c6f7949920-1\r\na=ssrc:1030784244 label:ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:1527498116 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:1527498116 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1527498116 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:1527498116 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1845975655 cname:KG0FoQGXUmoab4jl-1\r\na=ssrc:1845975655 msid:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1 5f2fd522-6e8e-46ec-b2a1-983219cbf486-1\r\na=ssrc:637552840 cname:KG0FoQGXUmoab4jl-1\r\na=ssrc:637552840 msid:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1 5f2fd522-6e8e-46ec-b2a1-983219cbf486-1\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:2429519549 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2429519549 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:2429519549 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:2429519549 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:3246443449 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:3246443449 msid:4cab36cd-102c-45f9-abd2-19c6f7949920-1 ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:3246443449 mslabel:4cab36cd-102c-45f9-abd2-19c6f7949920-1\r\na=ssrc:3246443449 label:ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc-group:FID 1030784244 3246443449\r\na=ssrc-group:FID 1527498116 2429519549\r\na=ssrc-group:FID 1845975655 637552840\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197676132] +["onsignalingstatechange","PC_1","have-remote-offer",1605197676137] +["onaddstream","PC_1","8e471656-671a-4774-9269-c578d7885ceb-1 audio:cde366ab-9d77-46e7-99ad-53211f7e7f11-1",1605197676145] +["ontrack","PC_1","audio:cde366ab-9d77-46e7-99ad-53211f7e7f11-1 stream:8e471656-671a-4774-9269-c578d7885ceb-1",1605197676156] +["onaddstream","PC_1","d8057941-e4b2-4a7e-ba19-3ad67ce88783-1 video:5f2fd522-6e8e-46ec-b2a1-983219cbf486-1",1605197676156] +["ontrack","PC_1","video:5f2fd522-6e8e-46ec-b2a1-983219cbf486-1 stream:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1",1605197676169] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197676169] +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197676169] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 7 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197676177] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 7 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197676180] +["onsignalingstatechange","PC_1","stable",1605197676182] +["setLocalDescriptionOnSuccess","PC_1",null,1605197676182] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.004129760390005908,"totalSamplesDuration":77.71000000000285},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":1907028,"bytesReceived":523272},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1084000,"concealedSamples":1014007,"silentConcealedSamples":1003363,"totalSamplesDuration":22.670000000000744},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":865,"bytesReceived":52146,"headerBytesReceived":20760,"lastPacketReceivedTimestamp":275682.329,"jitter":0.005,"jitterBufferDelay":81580.8,"jitterBufferEmittedCount":827520,"totalSamplesReceived":1007200,"concealedSamples":150728,"silentConcealedSamples":106874,"concealmentEvents":11,"insertedSamplesForDeceleration":31057,"audioLevel":1,"totalAudioEnergy":0.0039661937155809355,"totalSamplesDuration":21.150000000000507},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"type":"inbound-rtp","ssrc":757648711,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_receiver_9","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Inbound_111","packetsReceived":67,"fecPacketsReceived":0,"fecPacketsDiscarded":0,"bytesReceived":4372,"headerBytesReceived":1608,"packetsLost":0,"lastPacketReceivedTimestamp":275682.36,"jitter":0.006,"jitterBufferDelay":3004.8,"jitterBufferEmittedCount":62400,"totalSamplesReceived":68320,"concealedSamples":5328,"silentConcealedSamples":3960,"concealmentEvents":3,"insertedSamplesForDeceleration":2272,"removedSamplesForAcceleration":1186,"audioLevel":86,"totalAudioEnergy":0.00000547275753427763,"totalSamplesDuration":1.6100000000000012},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":13612,"packetsReceived":327,"bytesReceived":170079,"headerBytesReceived":7848,"lastPacketReceivedTimestamp":275682.306,"framesReceived":311,"framesDecoded":311,"keyFramesDecoded":4,"totalDecodeTime":0.019,"totalInterFrameDelay":20.840000000000032,"totalSquaredInterFrameDelay":4.299733999999993},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0,"type":"inbound-rtp","ssrc":1845975655,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_receiver_10","transportId":"RTCTransport_audio_1","firCount":0,"pliCount":1,"nackCount":0,"packetsReceived":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"framesReceived":0,"framesDecoded":0,"keyFramesDecoded":0,"framesDropped":0,"totalDecodeTime":0,"totalInterFrameDelay":0,"totalSquaredInterFrameDelay":0,"decoderImplementation":"unknown"},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0,"type":"track","trackIdentifier":"5f2fd522-6e8e-46ec-b2a1-983219cbf486-1","remoteSource":true,"ended":false,"detached":false,"kind":"video","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"framesReceived":0,"framesDecoded":0,"framesDropped":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1084000,"totalSamplesDuration":22.670000000000744,"concealedSamples":1014007,"silentConcealedSamples":1003363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":81580.8,"jitterBufferEmittedCount":827520,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.0039661937155809355,"totalSamplesReceived":1007200,"totalSamplesDuration":21.150000000000507,"concealedSamples":150728,"silentConcealedSamples":106874,"concealmentEvents":11,"insertedSamplesForDeceleration":31057},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":6.531,"jitterBufferEmittedCount":310,"framesReceived":311,"framesDecoded":311},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"type":"track","trackIdentifier":"cde366ab-9d77-46e7-99ad-53211f7e7f11-1","remoteSource":true,"ended":false,"detached":false,"kind":"audio","jitterBufferDelay":3004.8,"jitterBufferEmittedCount":62400,"audioLevel":0.0026245918149357585,"totalAudioEnergy":0.00000547275753427763,"totalSamplesReceived":68320,"totalSamplesDuration":1.6100000000000012,"concealedSamples":5328,"silentConcealedSamples":3960,"concealmentEvents":3,"insertedSamplesForDeceleration":2272,"removedSamplesForAcceleration":1186},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":768},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"type":"stream","streamIdentifier":"8e471656-671a-4774-9269-c578d7885ceb-1","trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"type":"stream","streamIdentifier":"d8057941-e4b2-4a7e-ba19-3ad67ce88783-1","trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1134,"bytesSent":24897,"headerBytesSent":22680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":10097,"packetsSent":1324,"bytesSent":1314214,"headerBytesSent":36704,"framesEncoded":366,"keyFramesEncoded":10,"totalEncodeTime":1.742,"framesSent":366,"totalPacketSendDelay":61.175},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":11,"qpSum":13373,"packetsSent":399,"bytesSent":261071,"headerBytesSent":9576,"framesEncoded":365,"keyFramesEncoded":10,"totalEncodeTime":1.751,"framesSent":365,"totalPacketSendDelay":17.978},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197677614,"jitter":0.00008333333333333333,"roundTripTime":0.049},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197677614,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197677614,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197677614,"jitter":0.00007777777777777778,"roundTripTime":0.052},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":1907028,"packetsSent":3835,"bytesReceived":523272,"packetsReceived":2201},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197677744},1605197677751] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129762560120024,"totalSamplesDuration":79.71000000000387},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":2072305,"bytesReceived":553684,"totalRoundTripTime":1.829,"currentRoundTripTime":0.049,"requestsReceived":29,"responsesReceived":35,"responsesSent":29,"consentRequestsSent":34},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1180000,"concealedSamples":1110007,"silentConcealedSamples":1099363,"totalSamplesDuration":24.670000000001057},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":880,"bytesReceived":52703,"headerBytesReceived":21120,"lastPacketReceivedTimestamp":275684.247,"jitter":0.004,"jitterBufferDelay":89059.2,"jitterBufferEmittedCount":840960,"totalSamplesReceived":1103200,"concealedSamples":232568,"silentConcealedSamples":168794,"concealmentEvents":24,"insertedSamplesForDeceleration":31297,"totalAudioEnergy":0.003966195168532872,"totalSamplesDuration":23.15000000000082},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":167,"bytesReceived":10814,"headerBytesReceived":4008,"lastPacketReceivedTimestamp":275684.352,"jitter":0.005,"jitterBufferDelay":7814.4,"jitterBufferEmittedCount":158400,"totalSamplesReceived":164320,"audioLevel":57,"totalAudioEnergy":0.0000129654348732665,"totalSamplesDuration":3.609999999999967},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":14663,"packetsReceived":357,"bytesReceived":185408,"headerBytesReceived":8568,"lastPacketReceivedTimestamp":275684.307,"framesReceived":341,"framesDecoded":341,"totalDecodeTime":0.02,"totalInterFrameDelay":22.833000000000027,"totalSquaredInterFrameDelay":4.4321689999999885},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1180000,"totalSamplesDuration":24.670000000001057,"concealedSamples":1110007,"silentConcealedSamples":1099363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":89059.2,"jitterBufferEmittedCount":840960,"totalAudioEnergy":0.003966195168532872,"totalSamplesReceived":1103200,"totalSamplesDuration":23.15000000000082,"concealedSamples":232568,"silentConcealedSamples":168794,"concealmentEvents":24,"insertedSamplesForDeceleration":31297},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":7.245,"jitterBufferEmittedCount":340,"framesReceived":341,"framesDecoded":341},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":7814.4,"jitterBufferEmittedCount":158400,"audioLevel":0.00173955504013184,"totalAudioEnergy":0.0000129654348732665,"totalSamplesReceived":164320,"totalSamplesDuration":3.609999999999967},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":828},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1233,"bytesSent":28609,"headerBytesSent":24660},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":10558,"packetsSent":1445,"bytesSent":1440564,"headerBytesSent":39608,"framesEncoded":396,"totalEncodeTime":1.829,"framesSent":396,"totalPacketSendDelay":66.252},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":14256,"packetsSent":430,"bytesSent":284346,"headerBytesSent":10320,"framesEncoded":395,"totalEncodeTime":1.84,"framesSent":395,"totalPacketSendDelay":19.206},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197679615,"jitter":0.0000625,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197679615,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197679615,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197679615,"roundTripTime":0.05},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2072305,"packetsSent":4135,"bytesReceived":553684,"packetsReceived":2387},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197679746},1605197679755] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129765037589349,"totalSamplesDuration":81.7100000000049},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":2238387,"bytesReceived":584589,"totalRoundTripTime":1.879,"currentRoundTripTime":0.05,"requestsReceived":30,"responsesReceived":36,"responsesSent":30,"consentRequestsSent":35},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1276000,"concealedSamples":1206007,"silentConcealedSamples":1195363,"totalSamplesDuration":26.67000000000137},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":898,"bytesReceived":53365,"headerBytesReceived":21552,"lastPacketReceivedTimestamp":275685.945,"jitter":0.003,"jitterBufferDelay":96998.4,"jitterBufferEmittedCount":858240,"totalSamplesReceived":1199200,"concealedSamples":311048,"silentConcealedSamples":224474,"concealmentEvents":40,"insertedSamplesForDeceleration":31537,"audioLevel":0,"totalAudioEnergy":0.003966196751877942,"totalSamplesDuration":25.150000000001132},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":267,"bytesReceived":17510,"headerBytesReceived":6408,"lastPacketReceivedTimestamp":275686.355,"jitter":0.004,"jitterBufferDelay":11894.4,"jitterBufferEmittedCount":254400,"totalSamplesReceived":260320,"removedSamplesForAcceleration":1574,"audioLevel":2569,"totalAudioEnergy":0.0018570049561744584,"totalSamplesDuration":5.609999999999925},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":15882,"packetsReceived":387,"bytesReceived":200851,"headerBytesReceived":9288,"lastPacketReceivedTimestamp":275686.306,"framesReceived":371,"framesDecoded":371,"totalInterFrameDelay":24.829000000000022,"totalSquaredInterFrameDelay":4.565000999999985},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1276000,"totalSamplesDuration":26.67000000000137,"concealedSamples":1206007,"silentConcealedSamples":1195363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":96998.4,"jitterBufferEmittedCount":858240,"audioLevel":0,"totalAudioEnergy":0.003966196751877942,"totalSamplesReceived":1199200,"totalSamplesDuration":25.150000000001132,"concealedSamples":311048,"silentConcealedSamples":224474,"concealmentEvents":40,"insertedSamplesForDeceleration":31537},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":7.95,"jitterBufferEmittedCount":370,"framesReceived":371,"framesDecoded":371},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":11894.4,"jitterBufferEmittedCount":254400,"audioLevel":0.07840205084383679,"totalAudioEnergy":0.0018570049561744584,"totalSamplesReceived":260320,"totalSamplesDuration":5.609999999999925,"removedSamplesForAcceleration":1574},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":888},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1334,"bytesSent":32428,"headerBytesSent":26680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":11049,"packetsSent":1565,"bytesSent":1565835,"headerBytesSent":42488,"framesEncoded":426,"totalEncodeTime":1.919,"framesSent":426,"totalPacketSendDelay":71.189},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":15119,"packetsSent":462,"bytesSent":309382,"headerBytesSent":11088,"framesEncoded":425,"totalEncodeTime":1.931,"framesSent":425,"totalPacketSendDelay":20.435},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197681616,"jitter":0.000041666666666666665,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197681616,"roundTripTime":0.053},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197681616},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197681616,"roundTripTime":0.051},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2238387,"packetsSent":4436,"bytesReceived":584589,"packetsReceived":2574},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197681745},1605197681752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129829395907376,"totalSamplesDuration":83.71000000000592},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":2457219,"bytesReceived":614064,"totalRoundTripTime":1.931,"currentRoundTripTime":0.052,"responsesReceived":37,"consentRequestsSent":36},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1372000,"concealedSamples":1302007,"silentConcealedSamples":1291363,"totalSamplesDuration":28.670000000001682},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"jitterBufferDelay":100425.6,"jitterBufferEmittedCount":860160,"totalSamplesReceived":1295200,"concealedSamples":405038,"silentConcealedSamples":308412,"concealmentEvents":42,"totalAudioEnergy":0.0039662002352369805,"totalSamplesDuration":27.150000000001445},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":367,"bytesReceived":24154,"headerBytesReceived":8808,"lastPacketReceivedTimestamp":275688.365,"jitter":0.005,"jitterBufferDelay":16300.8,"jitterBufferEmittedCount":350400,"totalSamplesReceived":356320,"concealedSamples":6284,"concealmentEvents":4,"removedSamplesForAcceleration":1834,"audioLevel":78,"totalAudioEnergy":0.00489439639660328,"totalSamplesDuration":7.609999999999882},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":17228,"packetsReceived":418,"bytesReceived":215670,"headerBytesReceived":10032,"lastPacketReceivedTimestamp":275688.301,"framesReceived":401,"framesDecoded":401,"totalDecodeTime":0.022,"totalInterFrameDelay":26.82600000000003,"totalSquaredInterFrameDelay":4.698001999999983},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":31,"headerBytesReceived":832,"lastPacketReceivedTimestamp":275688.335},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1372000,"totalSamplesDuration":28.670000000001682,"concealedSamples":1302007,"silentConcealedSamples":1291363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":100425.6,"jitterBufferEmittedCount":860160,"totalAudioEnergy":0.0039662002352369805,"totalSamplesReceived":1295200,"totalSamplesDuration":27.150000000001445,"concealedSamples":405038,"silentConcealedSamples":308412,"concealmentEvents":42},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":8.64,"jitterBufferEmittedCount":400,"framesReceived":401,"framesDecoded":401},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":16300.8,"jitterBufferEmittedCount":350400,"audioLevel":0.002380443739127781,"totalAudioEnergy":0.00489439639660328,"totalSamplesReceived":356320,"totalSamplesDuration":7.609999999999882,"concealedSamples":6284,"concealmentEvents":4,"removedSamplesForAcceleration":1834},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":972},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1434,"bytesSent":36175,"headerBytesSent":28680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":11906,"packetsSent":1730,"bytesSent":1733306,"headerBytesSent":46448,"framesEncoded":468,"totalEncodeTime":2.035,"framesPerSecond":26,"framesSent":468,"totalPacketSendDelay":75.705},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":16473,"packetsSent":509,"bytesSent":342732,"headerBytesSent":12216,"framesEncoded":467,"totalEncodeTime":2.049,"framesSent":467,"totalPacketSendDelay":21.593},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197683615,"jitter":0.0000625,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197683615,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197683615,"jitter":0.000022222222222222223,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197683615,"jitter":0.00005555555555555556,"roundTripTime":0.05},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2457219,"packetsSent":4794,"bytesReceived":614064,"packetsReceived":2756},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":26},"timestamp":1605197683744},1605197683754] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129833102797531,"totalSamplesDuration":85.71000000000694},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":2694019,"bytesReceived":649049,"totalRoundTripTime":1.99,"currentRoundTripTime":0.059,"requestsReceived":31,"responsesReceived":38,"responsesSent":31,"consentRequestsSent":37},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1468000,"concealedSamples":1398007,"silentConcealedSamples":1387363,"totalSamplesDuration":30.670000000001995},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"jitterBufferDelay":106464,"jitterBufferEmittedCount":862080,"totalSamplesReceived":1391200,"concealedSamples":498998,"silentConcealedSamples":400812,"concealmentEvents":43,"insertedSamplesForDeceleration":31657,"totalAudioEnergy":0.0039662028989821295,"totalSamplesDuration":29.150000000001757},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":467,"bytesReceived":30849,"headerBytesReceived":11208,"lastPacketReceivedTimestamp":275690.359,"jitter":0.004,"jitterBufferDelay":20899.2,"jitterBufferEmittedCount":446400,"totalSamplesReceived":452320,"audioLevel":193,"totalAudioEnergy":0.02260729532604963,"totalSamplesDuration":9.60999999999984},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":18255,"packetsReceived":448,"bytesReceived":230670,"headerBytesReceived":10752,"lastPacketReceivedTimestamp":275690.315,"framesReceived":431,"framesPerSecond":14,"framesDecoded":431,"totalDecodeTime":0.027,"totalInterFrameDelay":28.82800000000004,"totalSquaredInterFrameDelay":4.831867999999983},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":128,"headerBytesReceived":3750,"lastPacketReceivedTimestamp":275690.359},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1468000,"totalSamplesDuration":30.670000000001995,"concealedSamples":1398007,"silentConcealedSamples":1387363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":106464,"jitterBufferEmittedCount":862080,"totalAudioEnergy":0.0039662028989821295,"totalSamplesReceived":1391200,"totalSamplesDuration":29.150000000001757,"concealedSamples":498998,"silentConcealedSamples":400812,"concealmentEvents":43,"insertedSamplesForDeceleration":31657},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":9.341,"jitterBufferEmittedCount":430,"framesReceived":431,"framesDecoded":431},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":20899.2,"jitterBufferEmittedCount":446400,"audioLevel":0.005890072328867458,"totalAudioEnergy":0.02260729532604963,"totalSamplesReceived":452320,"totalSamplesDuration":9.60999999999984},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1092},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1534,"bytesSent":39852,"headerBytesSent":30680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":13128,"packetsSent":1917,"bytesSent":1914271,"headerBytesSent":50936,"framesEncoded":528,"totalEncodeTime":2.203,"framesPerSecond":29,"framesSent":528,"totalPacketSendDelay":79.719},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":18019,"packetsSent":569,"bytesSent":378538,"headerBytesSent":13656,"framesEncoded":527,"totalEncodeTime":2.22,"framesSent":527,"totalPacketSendDelay":22.843},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197685617,"jitter":0.00010416666666666667},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197685617},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197685617,"roundTripTime":0.061},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197685617,"jitter":0.000033333333333333335,"roundTripTime":0.055},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2694019,"packetsSent":5200,"bytesReceived":649049,"packetsReceived":3052},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":30},"timestamp":1605197685745},1605197685752] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129834965556437,"totalSamplesDuration":87.71000000000797},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":2873089,"bytesReceived":686488,"requestsReceived":32,"responsesSent":32},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1564000,"concealedSamples":1494007,"silentConcealedSamples":1483363,"totalSamplesDuration":32.67000000000207},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"totalSamplesReceived":1487200,"concealedSamples":594998,"silentConcealedSamples":496812,"totalSamplesDuration":31.15000000000207},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":567,"bytesReceived":37340,"headerBytesReceived":13608,"lastPacketReceivedTimestamp":275692.357,"jitter":0.009,"jitterBufferDelay":25516.8,"jitterBufferEmittedCount":541440,"totalSamplesReceived":548320,"concealedSamples":6680,"concealmentEvents":5,"audioLevel":36,"totalAudioEnergy":0.022613646756243045,"totalSamplesDuration":11.609999999999797},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":19302,"packetsReceived":475,"bytesReceived":244210,"headerBytesReceived":11400,"lastPacketReceivedTimestamp":275692.118,"framesReceived":458,"framesPerSecond":12,"framesDecoded":458,"totalDecodeTime":0.029,"totalInterFrameDelay":30.62500000000004,"totalSquaredInterFrameDelay":4.951820999999984},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":262,"headerBytesReceived":10326,"lastPacketReceivedTimestamp":275692.369},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1564000,"totalSamplesDuration":32.67000000000207,"concealedSamples":1494007,"silentConcealedSamples":1483363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"totalSamplesReceived":1487200,"totalSamplesDuration":31.15000000000207,"concealedSamples":594998,"silentConcealedSamples":496812},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":9.987,"jitterBufferEmittedCount":457,"framesReceived":458,"framesDecoded":458},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":25516.8,"jitterBufferEmittedCount":541440,"audioLevel":0.001098666341135899,"totalAudioEnergy":0.022613646756243045,"totalSamplesReceived":548320,"totalSamplesDuration":11.609999999999797,"concealedSamples":6680,"concealmentEvents":5},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1212},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1634,"bytesSent":43516,"headerBytesSent":32680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":14612,"packetsSent":2062,"bytesSent":2048170,"headerBytesSent":54416,"framesEncoded":588,"totalEncodeTime":2.366,"framesSent":588,"totalPacketSendDelay":84.039},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":19811,"packetsSent":629,"bytesSent":405333,"headerBytesSent":15096,"framesEncoded":587,"totalEncodeTime":2.386,"framesSent":587,"totalPacketSendDelay":24.612},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197687617,"jitter":0.0000625,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197687617,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197687617,"roundTripTime":0.063},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197687617,"roundTripTime":0.063},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2873089,"packetsSent":5563,"bytesReceived":686488,"packetsReceived":3382},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197687745},1605197687753] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129837135670552,"totalSamplesDuration":89.71000000000899},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":2974126,"bytesReceived":728083,"totalRoundTripTime":2.043,"currentRoundTripTime":0.053,"responsesReceived":39,"consentRequestsSent":38},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1660000,"concealedSamples":1590007,"silentConcealedSamples":1579363,"totalSamplesDuration":34.67000000000167},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":905,"bytesReceived":53620,"headerBytesReceived":21720,"lastPacketReceivedTimestamp":275694.306,"jitterBufferDelay":107577.6,"jitterBufferEmittedCount":864960,"totalSamplesReceived":1583200,"concealedSamples":688088,"silentConcealedSamples":587502,"concealmentEvents":45,"insertedSamplesForDeceleration":31777,"audioLevel":1,"totalAudioEnergy":0.003966202945551102,"totalSamplesDuration":33.150000000001974},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":667,"bytesReceived":43819,"headerBytesReceived":16008,"lastPacketReceivedTimestamp":275694.352,"jitter":0.007,"jitterBufferDelay":30796.8,"jitterBufferEmittedCount":637440,"totalSamplesReceived":644320,"concealedSamples":7938,"concealmentEvents":7,"removedSamplesForAcceleration":3064,"audioLevel":47,"totalAudioEnergy":0.022633562107097938,"totalSamplesDuration":13.609999999999754},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":20562,"packetsReceived":510,"bytesReceived":261234,"headerBytesReceived":12240,"lastPacketReceivedTimestamp":275694.365,"framesReceived":493,"framesPerSecond":20,"framesDecoded":493,"totalDecodeTime":0.042,"totalInterFrameDelay":32.86800000000004,"totalSquaredInterFrameDelay":5.150249999999984},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":371,"headerBytesReceived":18539,"lastPacketReceivedTimestamp":275694.334},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1660000,"totalSamplesDuration":34.67000000000167,"concealedSamples":1590007,"silentConcealedSamples":1579363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":107577.6,"jitterBufferEmittedCount":864960,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.003966202945551102,"totalSamplesReceived":1583200,"totalSamplesDuration":33.150000000001974,"concealedSamples":688088,"silentConcealedSamples":587502,"concealmentEvents":45,"insertedSamplesForDeceleration":31777},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":10.809,"jitterBufferEmittedCount":492,"framesReceived":493,"framesDecoded":493},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":30796.8,"jitterBufferEmittedCount":637440,"audioLevel":0.001434369945371868,"totalAudioEnergy":0.022633562107097938,"totalSamplesReceived":644320,"totalSamplesDuration":13.609999999999754,"concealedSamples":7938,"concealmentEvents":7,"removedSamplesForAcceleration":3064},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1270},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1734,"bytesSent":47144,"headerBytesSent":34680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":15714,"packetsSent":2138,"bytesSent":2118969,"headerBytesSent":56240,"framesEncoded":617,"keyFramesEncoded":11,"totalEncodeTime":2.441,"framesPerSecond":15,"framesSent":617,"totalPacketSendDelay":88.77},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":12,"qpSum":21254,"packetsSent":662,"bytesSent":421171,"headerBytesSent":15888,"framesEncoded":616,"keyFramesEncoded":11,"totalEncodeTime":2.461,"framesSent":616,"totalPacketSendDelay":26.635},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197689619,"jitter":0.000041666666666666665,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197689619,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197689619,"jitter":0.000033333333333333335,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197689619,"jitter":0.00006666666666666667,"roundTripTime":0.052},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":2974126,"packetsSent":5829,"bytesReceived":728083,"packetsReceived":3673},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197689746},1605197689753] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129838998429457,"totalSamplesDuration":91.71000000001001},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":3115962,"bytesReceived":778431,"totalRoundTripTime":2.093,"currentRoundTripTime":0.05,"requestsReceived":33,"responsesReceived":40,"responsesSent":33,"consentRequestsSent":39},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1756000,"concealedSamples":1686007,"silentConcealedSamples":1675363,"totalSamplesDuration":36.670000000001274},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":925,"bytesReceived":54363,"headerBytesReceived":22200,"lastPacketReceivedTimestamp":275696.331,"jitter":0.004,"jitterBufferDelay":114355.2,"jitterBufferEmittedCount":878400,"totalSamplesReceived":1679200,"concealedSamples":770481,"silentConcealedSamples":643182,"concealmentEvents":55,"insertedSamplesForDeceleration":32137,"audioLevel":2,"totalAudioEnergy":0.003966204286737508,"totalSamplesDuration":35.150000000001576},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":767,"bytesReceived":51814,"headerBytesReceived":18408,"lastPacketReceivedTimestamp":275696.367,"jitterBufferDelay":35644.8,"jitterBufferEmittedCount":734400,"totalSamplesReceived":740320,"removedSamplesForAcceleration":3652,"audioLevel":64,"totalAudioEnergy":0.022638401377605456,"totalSamplesDuration":15.609999999999712},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":21922,"packetsReceived":557,"bytesReceived":284052,"headerBytesReceived":13368,"lastPacketReceivedTimestamp":275696.314,"framesReceived":540,"framesPerSecond":18,"framesDecoded":540,"totalDecodeTime":0.057,"totalInterFrameDelay":34.82200000000002,"totalSquaredInterFrameDelay":5.244753999999983},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":461,"headerBytesReceived":21053,"lastPacketReceivedTimestamp":275696.359},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"nackCount":1,"qpSum":7546,"packetsReceived":224,"bytesReceived":193793,"headerBytesReceived":5376,"packetsLost":36,"lastPacketReceivedTimestamp":275696.259,"framesReceived":117,"framesPerSecond":5,"framesDecoded":116,"keyFramesDecoded":11,"totalDecodeTime":0.139,"totalInterFrameDelay":6.084000000000001,"totalSquaredInterFrameDelay":0.4402059999999999},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1756000,"totalSamplesDuration":36.670000000001274,"concealedSamples":1686007,"silentConcealedSamples":1675363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":3.511,"jitterBufferEmittedCount":115,"framesReceived":117,"framesDecoded":116},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":114355.2,"jitterBufferEmittedCount":878400,"audioLevel":0.00006103701895199438,"totalAudioEnergy":0.003966204286737508,"totalSamplesReceived":1679200,"totalSamplesDuration":35.150000000001576,"concealedSamples":770481,"silentConcealedSamples":643182,"concealmentEvents":55,"insertedSamplesForDeceleration":32137},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":11.89,"jitterBufferEmittedCount":539,"framesReceived":540,"framesDecoded":540},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":35644.8,"jitterBufferEmittedCount":734400,"audioLevel":0.0019531846064638203,"totalAudioEnergy":0.022638401377605456,"totalSamplesReceived":740320,"totalSamplesDuration":15.609999999999712,"removedSamplesForAcceleration":3652},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1330},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1834,"bytesSent":50853,"headerBytesSent":36680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":16269,"packetsSent":2243,"bytesSent":2226432,"headerBytesSent":58760,"framesEncoded":647,"keyFramesEncoded":12,"totalEncodeTime":2.523,"framesSent":647,"totalPacketSendDelay":95.094},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":13,"qpSum":22384,"packetsSent":695,"bytesSent":439931,"headerBytesSent":16680,"framesEncoded":646,"keyFramesEncoded":12,"totalEncodeTime":2.544,"framesSent":646,"totalPacketSendDelay":28.552},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197691619,"jitter":0.0000625},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197691619,"roundTripTime":0.051},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197691619,"jitter":0.000022222222222222223,"roundTripTime":0.049},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197691619,"jitter":0.00007777777777777778,"roundTripTime":0.05},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3115962,"packetsSent":6123,"bytesReceived":778431,"packetsReceived":3978},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197691745},1605197691754] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129840861188363,"totalSamplesDuration":93.71000000001104},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":3316439,"bytesReceived":838430,"totalRoundTripTime":2.142,"currentRoundTripTime":0.049,"requestsReceived":34,"responsesReceived":41,"responsesSent":34,"consentRequestsSent":40},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1852000,"concealedSamples":1782007,"silentConcealedSamples":1771363,"totalSamplesDuration":38.670000000000876},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":965,"bytesReceived":55884,"headerBytesReceived":23160,"lastPacketReceivedTimestamp":275698.266,"jitter":0.003,"jitterBufferDelay":132259.2,"jitterBufferEmittedCount":919680,"totalSamplesReceived":1775200,"concealedSamples":822789,"silentConcealedSamples":666462,"concealmentEvents":73,"insertedSamplesForDeceleration":34356,"audioLevel":1,"totalAudioEnergy":0.003966207388231044,"totalSamplesDuration":37.15000000000118},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":867,"bytesReceived":59994,"headerBytesReceived":20808,"lastPacketReceivedTimestamp":275698.356,"jitter":0.005,"jitterBufferDelay":40531.2,"jitterBufferEmittedCount":830400,"totalSamplesReceived":836320,"concealedSamples":8552,"concealmentEvents":8,"removedSamplesForAcceleration":4146,"audioLevel":74,"totalAudioEnergy":0.022644263526247876,"totalSamplesDuration":17.609999999999953},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":23186,"packetsReceived":586,"bytesReceived":299089,"headerBytesReceived":14064,"lastPacketReceivedTimestamp":275698.312,"framesReceived":569,"framesPerSecond":14,"framesDecoded":569,"totalDecodeTime":0.061,"totalInterFrameDelay":36.83500000000002,"totalSquaredInterFrameDelay":5.385822999999986},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":595,"headerBytesReceived":26739,"lastPacketReceivedTimestamp":275698.369},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":8130,"packetsReceived":245,"bytesReceived":211080,"headerBytesReceived":5880,"lastPacketReceivedTimestamp":275698.33,"framesReceived":135,"framesPerSecond":10,"framesDecoded":134,"totalInterFrameDelay":8.170000000000002,"totalSquaredInterFrameDelay":0.6999939999999998},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1852000,"totalSamplesDuration":38.670000000000876,"concealedSamples":1782007,"silentConcealedSamples":1771363},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":3.708,"jitterBufferEmittedCount":133,"framesReceived":135,"framesDecoded":134},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":132259.2,"jitterBufferEmittedCount":919680,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.003966207388231044,"totalSamplesReceived":1775200,"totalSamplesDuration":37.15000000000118,"concealedSamples":822789,"silentConcealedSamples":666462,"concealmentEvents":73,"insertedSamplesForDeceleration":34356},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":12.584,"jitterBufferEmittedCount":568,"framesReceived":569,"framesDecoded":569},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":40531.2,"jitterBufferEmittedCount":830400,"audioLevel":0.0022583697012237922,"totalAudioEnergy":0.022644263526247876,"totalSamplesReceived":836320,"totalSamplesDuration":17.609999999999953,"concealedSamples":8552,"concealmentEvents":8,"removedSamplesForAcceleration":4146},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1402},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":1934,"bytesSent":54546,"headerBytesSent":38680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":16986,"packetsSent":2389,"bytesSent":2377760,"headerBytesSent":62264,"framesEncoded":683,"totalEncodeTime":2.634,"framesPerSecond":21,"framesSent":683,"totalPacketSendDelay":101.833},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":23389,"packetsSent":739,"bytesSent":471431,"headerBytesSent":17736,"framesEncoded":682,"totalEncodeTime":2.658,"framesSent":682,"totalPacketSendDelay":30.432},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197693620},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197693620},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197693620,"jitter":0.000033333333333333335},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197693620,"jitter":0.00008888888888888889,"roundTripTime":0.048},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3316439,"packetsSent":6468,"bytesReceived":838430,"packetsReceived":4348},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":22},"timestamp":1605197693744},1605197693752] +["setRemoteDescription","PC_1",{"type":"offer","sdp":"v=0\r\no=- 1605197599765 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 4cab36cd-102c-45f9-abd2-19c6f7949920-1\r\na=group:BUNDLE audio video\r\nm=audio 10000 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:1109381341 cname:mixed\r\na=ssrc:1109381341 msid:mixedmslabel mixedlabelaudio0\r\na=ssrc:1109381341 mslabel:mixedmslabel\r\na=ssrc:1109381341 label:mixedlabelaudio0\r\na=ssrc:2566963332 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2566963332 msid:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1 ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:2566963332 mslabel:c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1\r\na=ssrc:2566963332 label:ab82fe8b-0a35-4b70-974d-283617131b02-1\r\na=ssrc:3489317734 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:3489317734 msid:9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1 171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1\r\na=ssrc:3489317734 mslabel:9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1\r\na=ssrc:3489317734 label:171b7a9b-e5e7-41a5-8a74-45f6d2f1acde-1\r\na=ssrc:757648711 cname:KG0FoQGXUmoab4jl-1\r\na=ssrc:757648711 msid:8e471656-671a-4774-9269-c578d7885ceb-1 cde366ab-9d77-46e7-99ad-53211f7e7f11-1\r\na=ssrc:757648711 mslabel:8e471656-671a-4774-9269-c578d7885ceb-1\r\na=ssrc:757648711 label:cde366ab-9d77-46e7-99ad-53211f7e7f11-1\r\na=ssrc:1661050740 cname:71d0d441-8e70-2949-b0ff-815dc06dd2e8-1\r\na=ssrc:1661050740 msid:23083ecf-438f-c740-a83a-b59606da6931-1 05fe3002-633e-a449-9f7f-dff05cf051fe-1\r\na=rtcp-mux\r\nm=video 10000 RTP/SAVPF 100 96\r\nc=IN IP4 3.249.64.62\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:100 x-google-start-bitrate=800\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:actpass\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:cj51c1emujnast\r\na=ice-pwd:1asb421hlp24342ljs6uojdpaf\r\na=fingerprint:sha-256 A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E\r\na=candidate:1 1 udp 2130706431 2a05:d018:1a5:2401:ae1e:1ec:6eb8:1310 10000 typ host generation 0\r\na=candidate:2 1 udp 2130706431 10.200.3.224 10000 typ host generation 0\r\na=candidate:3 1 udp 1677724415 3.249.64.62 10000 typ srflx raddr 10.200.3.224 rport 10000 generation 0\r\na=ssrc:428706097 cname:71d0d441-8e70-2949-b0ff-815dc06dd2e8-1\r\na=ssrc:428706097 msid:b49bb11b-3452-824c-846b-27086a455136-1 7e6a28ec-d3e9-6b4e-9320-4d1760d74135-1\r\na=ssrc:1030784244 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:1030784244 msid:4cab36cd-102c-45f9-abd2-19c6f7949920-1 ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:1030784244 mslabel:4cab36cd-102c-45f9-abd2-19c6f7949920-1\r\na=ssrc:1030784244 label:ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:1527498116 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:1527498116 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1527498116 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:1527498116 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:1845975655 cname:KG0FoQGXUmoab4jl-1\r\na=ssrc:1845975655 msid:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1 5f2fd522-6e8e-46ec-b2a1-983219cbf486-1\r\na=ssrc:1845975655 mslabel:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1\r\na=ssrc:1845975655 label:5f2fd522-6e8e-46ec-b2a1-983219cbf486-1\r\na=ssrc:637552840 cname:KG0FoQGXUmoab4jl-1\r\na=ssrc:637552840 msid:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1 5f2fd522-6e8e-46ec-b2a1-983219cbf486-1\r\na=ssrc:637552840 mslabel:d8057941-e4b2-4a7e-ba19-3ad67ce88783-1\r\na=ssrc:637552840 label:5f2fd522-6e8e-46ec-b2a1-983219cbf486-1\r\na=ssrc:660043147 cname:71d0d441-8e70-2949-b0ff-815dc06dd2e8-1\r\na=ssrc:660043147 msid:b49bb11b-3452-824c-846b-27086a455136-1 7e6a28ec-d3e9-6b4e-9320-4d1760d74135-1\r\na=ssrc:1052990334 cname:mixed\r\na=ssrc:1052990334 msid:mixedmslabel mixedlabelvideo0\r\na=ssrc:1052990334 mslabel:mixedmslabel\r\na=ssrc:1052990334 label:mixedlabelvideo0\r\na=ssrc:2429519549 cname:m8sdjF9tZBVz4vH7-1\r\na=ssrc:2429519549 msid:8a4e8995-5250-4ffc-91d3-04287d760407-1 9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:2429519549 mslabel:8a4e8995-5250-4ffc-91d3-04287d760407-1\r\na=ssrc:2429519549 label:9bda91eb-0b16-4b55-a7d8-19beeaf7bb4f-1\r\na=ssrc:3246443449 cname:xk7hbXEDwrSaCgYb-1\r\na=ssrc:3246443449 msid:4cab36cd-102c-45f9-abd2-19c6f7949920-1 ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc:3246443449 mslabel:4cab36cd-102c-45f9-abd2-19c6f7949920-1\r\na=ssrc:3246443449 label:ad468e38-fe4f-451f-a879-32973af3c6a5-1\r\na=ssrc-group:FID 1030784244 3246443449\r\na=ssrc-group:FID 1527498116 2429519549\r\na=ssrc-group:FID 1845975655 637552840\r\na=ssrc-group:FID 428706097 660043147\r\na=rtcp-mux\r\na=x-google-flag:conference\r\n"},1605197694336] +["onsignalingstatechange","PC_1","have-remote-offer",1605197694340] +["onaddstream","PC_1","23083ecf-438f-c740-a83a-b59606da6931-1 audio:05fe3002-633e-a449-9f7f-dff05cf051fe-1",1605197694340] +["ontrack","PC_1","audio:05fe3002-633e-a449-9f7f-dff05cf051fe-1 stream:23083ecf-438f-c740-a83a-b59606da6931-1",1605197694350] +["onaddstream","PC_1","b49bb11b-3452-824c-846b-27086a455136-1 video:7e6a28ec-d3e9-6b4e-9320-4d1760d74135-1",1605197694350] +["ontrack","PC_1","video:7e6a28ec-d3e9-6b4e-9320-4d1760d74135-1 stream:b49bb11b-3452-824c-846b-27086a455136-1",1605197694376] +["setRemoteDescriptionOnSuccess","PC_1",null,1605197694376] +["createAnswer","PC_1",{"offerToReceiveAudio":true,"offerToReceiveVideo":true},1605197694376] +["createAnswerOnSuccess","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 8 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE audio video\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:audio\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=ice-options:trickle\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=setup:active\r\na=mid:video\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=sendrecv\r\na=rtcp-mux\r\na=rtpmap:100 VP8/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\n"},1605197694391] +["setLocalDescription","PC_1",{"type":"answer","sdp":"v=0\r\no=- 4149383079253850801 8 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=msid-semantic: WMS 763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=group:BUNDLE audio video\r\nm=audio 58174 RTP/SAVPF 111 103 104 126\r\nc=IN IP4 3.122.28.43\r\na=rtpmap:111 opus/48000/2\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:126 telephone-event/8000\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:111 transport-cc\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:audio\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=candidate:4096217215 1 udp 2122260223 192.168.1.154 60908 typ host generation 0 network-id 1\r\na=candidate:1479382210 1 udp 2122194687 172.17.16.1 60909 typ host generation 0 network-id 2\r\na=candidate:2999745851 1 udp 2122129151 192.168.56.1 60910 typ host generation 0 network-id 3\r\na=candidate:3131354255 1 tcp 1518280447 192.168.1.154 9 typ host tcptype active generation 0 network-id 1\r\na=candidate:380528690 1 tcp 1518214911 172.17.16.1 9 typ host tcptype active generation 0 network-id 2\r\na=candidate:4233069003 1 tcp 1518149375 192.168.56.1 9 typ host tcptype active generation 0 network-id 3\r\na=candidate:3501540035 1 udp 8331007 3.122.28.43 58174 typ relay raddr 188.24.8.45 rport 59099 generation 0 network-id 1\r\na=ice-options:trickle\r\na=ssrc:2545347749 cname:hvul7HYwR2plbiHL\r\na=ssrc:2545347749 msid:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081 c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=ssrc:2545347749 mslabel:cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081\r\na=ssrc:2545347749 label:c9a9984e-3ac8-41e5-bf66-1f4f7098f230\r\na=rtcp-mux\r\nm=video 9 RTP/SAVPF 100 96\r\nc=IN IP4 0.0.0.0\r\na=rtpmap:100 VP8/90000\r\na=rtpmap:96 rtx/90000\r\na=fmtp:96 apt=100\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:5 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=setup:active\r\na=mid:video\r\na=sendrecv\r\na=ice-ufrag:Blt1\r\na=ice-pwd:4JJKx20SEwfT13xGhUAOrdxU\r\na=fingerprint:sha-256 D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26\r\na=ice-options:trickle\r\na=ssrc:3077306155 cname:hvul7HYwR2plbiHL\r\na=ssrc:3077306155 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:3077306155 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:3077306155 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 cname:hvul7HYwR2plbiHL\r\na=ssrc:699914410 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:699914410 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:699914410 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 cname:hvul7HYwR2plbiHL\r\na=ssrc:1409401962 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1409401962 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1409401962 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 cname:hvul7HYwR2plbiHL\r\na=ssrc:1191903134 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:1191903134 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:1191903134 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 cname:hvul7HYwR2plbiHL\r\na=ssrc:644288619 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:644288619 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:644288619 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 cname:hvul7HYwR2plbiHL\r\na=ssrc:2041639986 msid:763f09bf-2814-4ed8-98ec-21797d9e940c 30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc:2041639986 mslabel:763f09bf-2814-4ed8-98ec-21797d9e940c\r\na=ssrc:2041639986 label:30bb2010-3c2e-4509-a5d6-6fc4d00257d2\r\na=ssrc-group:FID 3077306155 699914410\r\na=ssrc-group:FID 1409401962 644288619\r\na=ssrc-group:FID 1191903134 2041639986\r\na=ssrc-group:SIM 3077306155 1409401962 1191903134\r\na=rtcp-mux\r\n"},1605197694394] +["onsignalingstatechange","PC_1","stable",1605197694397] +["setLocalDescriptionOnSuccess","PC_1",null,1605197694397] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129842723947268,"totalSamplesDuration":95.71000000001206},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":3565117,"bytesReceived":908219,"totalRoundTripTime":2.198,"currentRoundTripTime":0.056,"responsesReceived":42,"consentRequestsSent":41},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_1661050740":{"timestamp":0,"type":"inbound-rtp","ssrc":1661050740,"isRemote":false,"mediaType":"audio","kind":"audio","trackId":"RTCMediaStreamTrack_receiver_11","transportId":"RTCTransport_audio_1","codecId":"RTCCodec_audio_Inbound_111","packetsReceived":53,"fecPacketsReceived":0,"fecPacketsDiscarded":0,"bytesReceived":4095,"headerBytesReceived":1272,"packetsLost":0,"lastPacketReceivedTimestamp":275700.337,"jitter":0.005,"jitterBufferDelay":3043.2,"jitterBufferEmittedCount":49920,"totalSamplesReceived":56640,"concealedSamples":7367,"silentConcealedSamples":4760,"concealmentEvents":2,"insertedSamplesForDeceleration":1398,"removedSamplesForAcceleration":1179,"audioLevel":74,"totalAudioEnergy":0.0000015131469481487263,"totalSamplesDuration":1.400000000000001},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":1947520,"concealedSamples":1877527,"silentConcealedSamples":1866883,"totalSamplesDuration":40.66000000000048},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":1010,"bytesReceived":57579,"headerBytesReceived":24240,"lastPacketReceivedTimestamp":275700.328,"jitter":0.005,"jitterBufferDelay":152073.6,"jitterBufferEmittedCount":964800,"totalSamplesReceived":1870720,"concealedSamples":871199,"silentConcealedSamples":683382,"concealmentEvents":96,"insertedSamplesForDeceleration":36396,"totalAudioEnergy":0.003966212110324774,"totalSamplesDuration":39.14000000000078},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":967,"bytesReceived":68094,"headerBytesReceived":23208,"lastPacketReceivedTimestamp":275700.353,"jitterBufferDelay":45196.8,"jitterBufferEmittedCount":926400,"totalSamplesReceived":931840,"concealedSamples":8855,"concealmentEvents":9,"removedSamplesForAcceleration":5220,"audioLevel":36,"totalAudioEnergy":0.02266016965193485,"totalSamplesDuration":19.600000000000264},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":24777,"packetsReceived":617,"bytesReceived":313129,"headerBytesReceived":14808,"lastPacketReceivedTimestamp":275700.341,"framesReceived":599,"framesPerSecond":15,"framesDecoded":598,"keyFramesDecoded":5,"totalDecodeTime":0.063,"totalInterFrameDelay":38.80600000000005,"totalSquaredInterFrameDelay":5.521011999999988},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":727,"headerBytesReceived":32770,"lastPacketReceivedTimestamp":275700.35},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":9228,"packetsReceived":277,"bytesReceived":230772,"headerBytesReceived":6648,"lastPacketReceivedTimestamp":275700.299,"framesReceived":165,"framesPerSecond":15,"framesDecoded":164,"keyFramesDecoded":12,"totalDecodeTime":0.143,"totalInterFrameDelay":10.128000000000002,"totalSquaredInterFrameDelay":0.8303139999999996},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0},"RTCInboundRTPVideoStream_428706097":{"timestamp":0,"type":"inbound-rtp","ssrc":428706097,"isRemote":false,"mediaType":"video","kind":"video","trackId":"RTCMediaStreamTrack_receiver_12","transportId":"RTCTransport_audio_1","firCount":0,"pliCount":1,"nackCount":0,"packetsReceived":0,"bytesReceived":0,"headerBytesReceived":0,"packetsLost":0,"framesReceived":0,"framesDecoded":0,"keyFramesDecoded":0,"framesDropped":0,"totalDecodeTime":0,"totalInterFrameDelay":0,"totalSquaredInterFrameDelay":0,"decoderImplementation":"unknown"},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0},"RTCMediaStreamTrack_receiver_11":{"timestamp":0,"type":"track","trackIdentifier":"05fe3002-633e-a449-9f7f-dff05cf051fe-1","remoteSource":true,"ended":false,"detached":false,"kind":"audio","jitterBufferDelay":3043.2,"jitterBufferEmittedCount":49920,"audioLevel":0.0022583697012237922,"totalAudioEnergy":0.0000015131469481487263,"totalSamplesReceived":56640,"totalSamplesDuration":1.400000000000001,"concealedSamples":7367,"silentConcealedSamples":4760,"concealmentEvents":2,"insertedSamplesForDeceleration":1398,"removedSamplesForAcceleration":1179},"RTCMediaStreamTrack_receiver_12":{"timestamp":0,"type":"track","trackIdentifier":"7e6a28ec-d3e9-6b4e-9320-4d1760d74135-1","remoteSource":true,"ended":false,"detached":false,"kind":"video","jitterBufferDelay":0,"jitterBufferEmittedCount":0,"framesReceived":0,"framesDecoded":0,"framesDropped":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":1947520,"totalSamplesDuration":40.66000000000048,"concealedSamples":1877527,"silentConcealedSamples":1866883},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":4.332,"jitterBufferEmittedCount":163,"framesReceived":165,"framesDecoded":164},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":152073.6,"jitterBufferEmittedCount":964800,"totalAudioEnergy":0.003966212110324774,"totalSamplesReceived":1870720,"totalSamplesDuration":39.14000000000078,"concealedSamples":871199,"silentConcealedSamples":683382,"concealmentEvents":96,"insertedSamplesForDeceleration":36396},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":13.28,"jitterBufferEmittedCount":597,"framesReceived":599,"framesDecoded":598},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":45196.8,"jitterBufferEmittedCount":926400,"audioLevel":0.001098666341135899,"totalAudioEnergy":0.02266016965193485,"totalSamplesReceived":931840,"totalSamplesDuration":19.600000000000264,"concealedSamples":8855,"concealmentEvents":9,"removedSamplesForAcceleration":5220},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1522},"RTCMediaStream_23083ecf-438f-c740-a83a-b59606da6931-1":{"timestamp":0,"type":"stream","streamIdentifier":"23083ecf-438f-c740-a83a-b59606da6931-1","trackIds":["RTCMediaStreamTrack_receiver_11"]},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_b49bb11b-3452-824c-846b-27086a455136-1":{"timestamp":0,"type":"stream","streamIdentifier":"b49bb11b-3452-824c-846b-27086a455136-1","trackIds":["RTCMediaStreamTrack_receiver_12"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":2034,"bytesSent":58267,"headerBytesSent":40680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":18483,"packetsSent":2580,"bytesSent":2567839,"headerBytesSent":66848,"framesEncoded":743,"keyFramesEncoded":13,"totalEncodeTime":2.812,"framesPerSecond":30,"framesSent":743,"totalPacketSendDelay":106.906},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"pliCount":15,"qpSum":25545,"packetsSent":803,"bytesSent":509297,"headerBytesSent":19272,"framesEncoded":742,"keyFramesEncoded":13,"totalEncodeTime":2.839,"framesSent":742,"totalPacketSendDelay":32.09},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197695620,"roundTripTime":0.049},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197695620},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197695620,"jitter":0.000011111111111111112,"roundTripTime":0.05},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197695620,"jitter":0.000033333333333333335,"roundTripTime":0.052},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3565117,"packetsSent":6886,"bytesReceived":908219,"packetsReceived":4810},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":31},"timestamp":1605197695745},1605197695756] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129844586706174,"totalSamplesDuration":97.71000000001308},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":3719237,"bytesReceived":985557,"requestsReceived":35,"responsesSent":35},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_1661050740":{"timestamp":0,"packetsReceived":153,"bytesReceived":12195,"headerBytesReceived":3672,"lastPacketReceivedTimestamp":275702.341,"jitter":0.006,"jitterBufferDelay":7756.8,"jitterBufferEmittedCount":145920,"totalSamplesReceived":152640,"removedSamplesForAcceleration":1705,"audioLevel":44,"totalAudioEnergy":0.00000688465422560897,"totalSamplesDuration":3.3999999999999715},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":2043520,"concealedSamples":1973527,"silentConcealedSamples":1962883,"totalSamplesDuration":42.66000000000008},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":1055,"bytesReceived":59257,"headerBytesReceived":25320,"lastPacketReceivedTimestamp":275702.337,"jitterBufferDelay":169372.8,"jitterBufferEmittedCount":1006080,"totalSamplesReceived":1966720,"concealedSamples":924068,"silentConcealedSamples":702438,"concealmentEvents":117,"insertedSamplesForDeceleration":38317,"totalAudioEnergy":0.003966216431925358,"totalSamplesDuration":41.140000000000384},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":1066,"bytesReceived":76113,"headerBytesReceived":25584,"lastPacketReceivedTimestamp":275702.343,"jitter":0.007,"jitterBufferDelay":49008,"jitterBufferEmittedCount":1022400,"totalSamplesReceived":1027840,"audioLevel":134,"totalAudioEnergy":0.022668275260756803,"totalSamplesDuration":21.600000000000577},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":26600,"packetsReceived":650,"bytesReceived":324620,"headerBytesReceived":15600,"lastPacketReceivedTimestamp":275702.341,"framesReceived":631,"framesPerSecond":18,"framesDecoded":630,"totalDecodeTime":0.067,"totalInterFrameDelay":40.80500000000005,"totalSquaredInterFrameDelay":5.65175299999999},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":825,"headerBytesReceived":39588,"lastPacketReceivedTimestamp":275702.359},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":10349,"packetsReceived":304,"bytesReceived":242211,"headerBytesReceived":7296,"lastPacketReceivedTimestamp":275702.347,"framesReceived":191,"framesPerSecond":10,"framesDecoded":190,"totalDecodeTime":0.147,"totalInterFrameDelay":12.171000000000006,"totalSquaredInterFrameDelay":1.0090169999999994},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0,"codecId":"RTCCodec_video_Inbound_100","qpSum":73,"packetsReceived":11,"bytesReceived":12489,"headerBytesReceived":264,"lastPacketReceivedTimestamp":275701.781,"framesReceived":1,"frameWidth":1280,"frameHeight":720,"framesPerSecond":1,"framesDecoded":1,"keyFramesDecoded":1,"totalDecodeTime":0.006,"decoderImplementation":"libvpx"},"RTCInboundRTPVideoStream_428706097":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0,"frameWidth":1280,"frameHeight":720,"framesReceived":1,"framesDecoded":1},"RTCMediaStreamTrack_receiver_11":{"timestamp":0,"jitterBufferDelay":7756.8,"jitterBufferEmittedCount":145920,"audioLevel":0.0013428144169438765,"totalAudioEnergy":0.00000688465422560897,"totalSamplesReceived":152640,"totalSamplesDuration":3.3999999999999715,"removedSamplesForAcceleration":1705},"RTCMediaStreamTrack_receiver_12":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":2043520,"totalSamplesDuration":42.66000000000008,"concealedSamples":1973527,"silentConcealedSamples":1962883},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":5.023,"jitterBufferEmittedCount":189,"framesReceived":191,"framesDecoded":190},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":169372.8,"jitterBufferEmittedCount":1006080,"totalAudioEnergy":0.003966216431925358,"totalSamplesReceived":1966720,"totalSamplesDuration":41.140000000000384,"concealedSamples":924068,"silentConcealedSamples":702438,"concealmentEvents":117,"insertedSamplesForDeceleration":38317},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":14.048,"jitterBufferEmittedCount":629,"framesReceived":631,"framesDecoded":630},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":49008,"jitterBufferEmittedCount":1022400,"audioLevel":0.004089480269783624,"totalAudioEnergy":0.022668275260756803,"totalSamplesReceived":1027840,"totalSamplesDuration":21.600000000000577},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1622,"hugeFramesSent":1},"RTCMediaStream_23083ecf-438f-c740-a83a-b59606da6931-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_11"]},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_b49bb11b-3452-824c-846b-27086a455136-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_12"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":2134,"bytesSent":62026,"headerBytesSent":42680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":19938,"packetsSent":2703,"bytesSent":2680999,"headerBytesSent":69800,"framesEncoded":793,"totalEncodeTime":2.941,"framesPerSecond":19,"framesSent":793,"totalPacketSendDelay":111.649},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":27582,"packetsSent":855,"bytesSent":532974,"headerBytesSent":20520,"framesEncoded":792,"totalEncodeTime":2.969,"framesSent":792,"hugeFramesSent":1,"totalPacketSendDelay":34.156},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197697621},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197697621},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197697621,"jitter":0.000033333333333333335,"roundTripTime":0.049},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197697621,"jitter":0.00005555555555555556,"roundTripTime":0.06},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3719237,"packetsSent":7219,"bytesReceived":985557,"packetsReceived":5282},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":20},"timestamp":1605197697746},1605197697755] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"totalAudioEnergy":0.004129847064175499,"totalSamplesDuration":99.7100000000141},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":3835320,"bytesReceived":1066506,"totalRoundTripTime":2.249,"currentRoundTripTime":0.051,"requestsReceived":36,"responsesReceived":43,"responsesSent":36,"consentRequestsSent":42},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_1661050740":{"timestamp":0,"packetsReceived":254,"bytesReceived":20448,"headerBytesReceived":6096,"lastPacketReceivedTimestamp":275704.357,"jitter":0.003,"jitterBufferDelay":11635.2,"jitterBufferEmittedCount":241920,"totalSamplesReceived":248640,"audioLevel":18,"totalAudioEnergy":0.000010797481623439352,"totalSamplesDuration":5.399999999999929},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":2139520,"concealedSamples":2069527,"silentConcealedSamples":2058883,"totalSamplesDuration":44.659999999999684},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":1107,"bytesReceived":61247,"headerBytesReceived":26568,"lastPacketReceivedTimestamp":275704.369,"jitter":0.004,"jitterBufferDelay":186940.8,"jitterBufferEmittedCount":1048320,"totalSamplesReceived":2062720,"concealedSamples":976105,"silentConcealedSamples":720664,"concealmentEvents":140,"insertedSamplesForDeceleration":40501,"audioLevel":2,"totalAudioEnergy":0.0039662191981223015,"totalSamplesDuration":43.139999999999986},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":1167,"bytesReceived":84294,"headerBytesReceived":28008,"lastPacketReceivedTimestamp":275704.36,"jitter":0.006,"jitterBufferDelay":55651.2,"jitterBufferEmittedCount":1118400,"totalSamplesReceived":1123840,"concealedSamples":12345,"concealmentEvents":10,"removedSamplesForAcceleration":8308,"audioLevel":34,"totalAudioEnergy":0.0226756840394376,"totalSamplesDuration":23.60000000000089},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":28273,"packetsReceived":682,"bytesReceived":336959,"headerBytesReceived":16368,"lastPacketReceivedTimestamp":275704.334,"framesReceived":663,"framesPerSecond":14,"framesDecoded":662,"totalDecodeTime":0.069,"totalInterFrameDelay":42.80400000000006,"totalSquaredInterFrameDelay":5.783285999999992},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":933,"headerBytesReceived":45343,"lastPacketReceivedTimestamp":275704.369},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":11203,"packetsReceived":319,"bytesReceived":247794,"headerBytesReceived":7656,"lastPacketReceivedTimestamp":275704.348,"framesReceived":206,"framesPerSecond":8,"framesDecoded":205,"totalDecodeTime":0.149,"totalInterFrameDelay":14.177000000000007,"totalSquaredInterFrameDelay":1.2794009999999993},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0,"qpSum":219,"packetsReceived":30,"bytesReceived":34493,"headerBytesReceived":720,"lastPacketReceivedTimestamp":275704.355,"framesReceived":3,"framesDecoded":3,"keyFramesDecoded":2,"totalDecodeTime":0.012,"totalInterFrameDelay":2.5789999999999997,"totalSquaredInterFrameDelay":3.665933},"RTCInboundRTPVideoStream_428706097":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0,"jitterBufferDelay":0.031,"jitterBufferEmittedCount":2,"framesReceived":3,"framesDecoded":3},"RTCMediaStreamTrack_receiver_11":{"timestamp":0,"jitterBufferDelay":11635.2,"jitterBufferEmittedCount":241920,"audioLevel":0.0005493331705679495,"totalAudioEnergy":0.000010797481623439352,"totalSamplesReceived":248640,"totalSamplesDuration":5.399999999999929},"RTCMediaStreamTrack_receiver_12":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":2139520,"totalSamplesDuration":44.659999999999684,"concealedSamples":2069527,"silentConcealedSamples":2058883},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":5.449,"jitterBufferEmittedCount":204,"framesReceived":206,"framesDecoded":205},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":186940.8,"jitterBufferEmittedCount":1048320,"audioLevel":0.00006103701895199438,"totalAudioEnergy":0.0039662191981223015,"totalSamplesReceived":2062720,"totalSamplesDuration":43.139999999999986,"concealedSamples":976105,"silentConcealedSamples":720664,"concealmentEvents":140,"insertedSamplesForDeceleration":40501},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":14.84,"jitterBufferEmittedCount":662,"framesReceived":663,"framesDecoded":662},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":55651.2,"jitterBufferEmittedCount":1118400,"audioLevel":0.0010376293221839045,"totalAudioEnergy":0.0226756840394376,"totalSamplesReceived":1123840,"totalSamplesDuration":23.60000000000089,"concealedSamples":12345,"concealmentEvents":10,"removedSamplesForAcceleration":8308},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1682},"RTCMediaStream_23083ecf-438f-c740-a83a-b59606da6931-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_11"]},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_b49bb11b-3452-824c-846b-27086a455136-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_12"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":2234,"bytesSent":65789,"headerBytesSent":44680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":20601,"packetsSent":2790,"bytesSent":2765610,"headerBytesSent":71888,"framesEncoded":823,"totalEncodeTime":3.034,"framesPerSecond":14,"framesSent":823,"totalPacketSendDelay":117.084},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":28763,"packetsSent":885,"bytesSent":549587,"headerBytesSent":21240,"framesEncoded":822,"totalEncodeTime":3.064,"framesSent":822,"totalPacketSendDelay":36.01},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197699621,"jitter":0.000041666666666666665},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197699621},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197699621,"jitter":0.000022222222222222223,"roundTripTime":0.052},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197699621,"jitter":0.00006666666666666667,"roundTripTime":0.049},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3835320,"packetsSent":7492,"bytesReceived":1066506,"packetsReceived":5752},"RTCVideoSource_4":{"timestamp":0,"framesPerSecond":15},"timestamp":1605197699745},1605197699755] +["getstats","PC_1",{"RTCAudioSource_3":{"timestamp":0,"audioLevel":0.00006103701895199438,"totalAudioEnergy":0.004129849150465466,"totalSamplesDuration":101.71000000001513},"RTCCertificate_A0:E7:DF:71:AE:E7:64:F2:37:A1:39:76:60:04:F1:F1:05:BA:FC:1E:AB:33:1C:AA:54:40:68:AE:0E:0B:B1:6E":{"timestamp":0},"RTCCertificate_D1:2A:16:8B:E2:6F:00:CD:F2:27:06:B0:11:31:63:35:34:D5:B1:14:89:4E:01:9E:8F:91:9E:BF:F9:34:4B:26":{"timestamp":0},"RTCCodec_audio_Inbound_103":{"timestamp":0},"RTCCodec_audio_Inbound_104":{"timestamp":0},"RTCCodec_audio_Inbound_111":{"timestamp":0},"RTCCodec_audio_Inbound_126":{"timestamp":0},"RTCCodec_audio_Outbound_103":{"timestamp":0},"RTCCodec_audio_Outbound_104":{"timestamp":0},"RTCCodec_audio_Outbound_111":{"timestamp":0},"RTCCodec_audio_Outbound_126":{"timestamp":0},"RTCCodec_video_Inbound_100":{"timestamp":0},"RTCCodec_video_Inbound_96":{"timestamp":0},"RTCCodec_video_Outbound_100":{"timestamp":0},"RTCCodec_video_Outbound_96":{"timestamp":0},"RTCIceCandidatePair_T9Sb2w4D_RC8fROJw":{"timestamp":0,"bytesSent":3993711,"bytesReceived":1148158,"totalRoundTripTime":2.302,"currentRoundTripTime":0.053,"responsesReceived":44,"consentRequestsSent":43},"RTCIceCandidate_RC8fROJw":{"timestamp":0},"RTCIceCandidate_T9Sb2w4D":{"timestamp":0},"RTCInboundRTPAudioStream_1109381341":{"timestamp":0},"RTCInboundRTPAudioStream_1661050740":{"timestamp":0,"packetsReceived":354,"bytesReceived":28521,"headerBytesReceived":8496,"lastPacketReceivedTimestamp":275706.351,"jitter":0.006,"jitterBufferDelay":16579.2,"jitterBufferEmittedCount":337920,"totalSamplesReceived":344640,"concealedSamples":8357,"concealmentEvents":3,"removedSamplesForAcceleration":2220,"audioLevel":37,"totalAudioEnergy":0.000015919239509255962,"totalSamplesDuration":7.399999999999887},"RTCInboundRTPAudioStream_2566963332":{"timestamp":0,"totalSamplesReceived":2235520,"concealedSamples":2165527,"silentConcealedSamples":2154883,"totalSamplesDuration":46.659999999999286},"RTCInboundRTPAudioStream_3489317734":{"timestamp":0,"packetsReceived":1163,"bytesReceived":63400,"headerBytesReceived":27912,"lastPacketReceivedTimestamp":275706.367,"jitter":0.003,"jitterBufferDelay":208454.4,"jitterBufferEmittedCount":1101120,"totalSamplesReceived":2158720,"concealedSamples":1016553,"silentConcealedSamples":730132,"concealmentEvents":165,"insertedSamplesForDeceleration":43392,"audioLevel":1,"totalAudioEnergy":0.003966225075126517,"totalSamplesDuration":45.13999999999959},"RTCInboundRTPAudioStream_757648711":{"timestamp":0,"packetsReceived":1267,"bytesReceived":92314,"headerBytesReceived":30408,"lastPacketReceivedTimestamp":275706.355,"jitterBufferDelay":60345.6,"jitterBufferEmittedCount":1214400,"totalSamplesReceived":1219840,"audioLevel":26,"totalAudioEnergy":0.022696732590319773,"totalSamplesDuration":25.600000000001202},"RTCInboundRTPVideoStream_1030784244":{"timestamp":0,"qpSum":30848,"packetsReceived":738,"bytesReceived":359411,"headerBytesReceived":17712,"lastPacketReceivedTimestamp":275706.36,"framesReceived":719,"framesPerSecond":30,"framesDecoded":718,"totalDecodeTime":0.078,"totalInterFrameDelay":44.86500000000002,"totalSquaredInterFrameDelay":5.864664999999994},"RTCInboundRTPVideoStream_1052990334":{"timestamp":0,"packetsReceived":1031,"headerBytesReceived":50590,"lastPacketReceivedTimestamp":275706.366},"RTCInboundRTPVideoStream_1527498116":{"timestamp":0,"qpSum":11652,"packetsReceived":334,"bytesReceived":256565,"headerBytesReceived":8016,"lastPacketReceivedTimestamp":275706.346,"framesReceived":221,"framesDecoded":220,"totalDecodeTime":0.151,"totalInterFrameDelay":16.184000000000008,"totalSquaredInterFrameDelay":1.5500619999999994},"RTCInboundRTPVideoStream_1845975655":{"timestamp":0,"qpSum":365,"packetsReceived":39,"bytesReceived":44085,"headerBytesReceived":936,"lastPacketReceivedTimestamp":275706.209,"framesReceived":5,"framesPerSecond":2,"framesDecoded":5,"totalDecodeTime":0.017,"totalInterFrameDelay":4.4239999999999995,"totalSquaredInterFrameDelay":5.84521},"RTCInboundRTPVideoStream_428706097":{"timestamp":0},"RTCMediaStreamTrack_receiver_1":{"timestamp":0},"RTCMediaStreamTrack_receiver_10":{"timestamp":0,"jitterBufferDelay":0.051,"jitterBufferEmittedCount":4,"framesReceived":5,"framesDecoded":5},"RTCMediaStreamTrack_receiver_11":{"timestamp":0,"jitterBufferDelay":16579.2,"jitterBufferEmittedCount":337920,"audioLevel":0.0011291848506118961,"totalAudioEnergy":0.000015919239509255962,"totalSamplesReceived":344640,"totalSamplesDuration":7.399999999999887,"concealedSamples":8357,"concealmentEvents":3,"removedSamplesForAcceleration":2220},"RTCMediaStreamTrack_receiver_12":{"timestamp":0},"RTCMediaStreamTrack_receiver_2":{"timestamp":0},"RTCMediaStreamTrack_receiver_3":{"timestamp":0,"totalSamplesReceived":2235520,"totalSamplesDuration":46.659999999999286,"concealedSamples":2165527,"silentConcealedSamples":2154883},"RTCMediaStreamTrack_receiver_4":{"timestamp":0,"jitterBufferDelay":5.77,"jitterBufferEmittedCount":219,"framesReceived":221,"framesDecoded":220},"RTCMediaStreamTrack_receiver_7":{"timestamp":0,"jitterBufferDelay":208454.4,"jitterBufferEmittedCount":1101120,"audioLevel":0.00003051850947599719,"totalAudioEnergy":0.003966225075126517,"totalSamplesReceived":2158720,"totalSamplesDuration":45.13999999999959,"concealedSamples":1016553,"silentConcealedSamples":730132,"concealmentEvents":165,"insertedSamplesForDeceleration":43392},"RTCMediaStreamTrack_receiver_8":{"timestamp":0,"jitterBufferDelay":16.16,"jitterBufferEmittedCount":717,"framesReceived":719,"framesDecoded":718},"RTCMediaStreamTrack_receiver_9":{"timestamp":0,"jitterBufferDelay":60345.6,"jitterBufferEmittedCount":1214400,"audioLevel":0.000793481246375927,"totalAudioEnergy":0.022696732590319773,"totalSamplesReceived":1219840,"totalSamplesDuration":25.600000000001202},"RTCMediaStreamTrack_sender_3":{"timestamp":0},"RTCMediaStreamTrack_sender_4":{"timestamp":0,"framesSent":1742},"RTCMediaStream_23083ecf-438f-c740-a83a-b59606da6931-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_11"]},"RTCMediaStream_4cab36cd-102c-45f9-abd2-19c6f7949920-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_8"]},"RTCMediaStream_763f09bf-2814-4ed8-98ec-21797d9e940c":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_4"]},"RTCMediaStream_8a4e8995-5250-4ffc-91d3-04287d760407-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_4"]},"RTCMediaStream_8e471656-671a-4774-9269-c578d7885ceb-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_9"]},"RTCMediaStream_9881cc6a-9644-4cb6-bc8e-8846c5b5793f-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_7"]},"RTCMediaStream_b49bb11b-3452-824c-846b-27086a455136-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_12"]},"RTCMediaStream_c24e6b49-83ee-42c2-abff-2a29bd7f26ad-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_3"]},"RTCMediaStream_cc8b3b5c-5a34-4a6d-b1a0-2eaa7c9fd081":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_sender_3"]},"RTCMediaStream_d8057941-e4b2-4a7e-ba19-3ad67ce88783-1":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_10"]},"RTCMediaStream_mixedmslabel":{"timestamp":0,"trackIds":["RTCMediaStreamTrack_receiver_1","RTCMediaStreamTrack_receiver_2"]},"RTCOutboundRTPAudioStream_2545347749":{"timestamp":0,"packetsSent":2334,"bytesSent":69533,"headerBytesSent":46680},"RTCOutboundRTPVideoStream_1191903134":{"timestamp":0},"RTCOutboundRTPVideoStream_1409401962":{"timestamp":0,"qpSum":21053,"packetsSent":2905,"bytesSent":2885409,"headerBytesSent":74648,"framesEncoded":853,"totalEncodeTime":3.13,"framesPerSecond":15,"framesSent":853,"totalPacketSendDelay":123.903},"RTCOutboundRTPVideoStream_3077306155":{"timestamp":0,"qpSum":29536,"packetsSent":915,"bytesSent":572111,"headerBytesSent":21960,"framesEncoded":852,"totalEncodeTime":3.161,"framesSent":852,"totalPacketSendDelay":37.73},"RTCPeerConnection":{"timestamp":0},"RTCRemoteInboundRtpAudioStream_2545347749":{"timestamp":1605197701622,"jitter":0.00008333333333333333,"roundTripTime":0.068},"RTCRemoteInboundRtpVideoStream_1191903134":{"timestamp":1605197701622},"RTCRemoteInboundRtpVideoStream_1409401962":{"timestamp":1605197701622,"jitter":0.000033333333333333335},"RTCRemoteInboundRtpVideoStream_3077306155":{"timestamp":1605197701622,"jitter":0.00011111111111111112,"roundTripTime":0.06},"RTCTransport_audio_1":{"timestamp":0,"bytesSent":3993711,"packetsSent":7796,"bytesReceived":1148158,"packetsReceived":6228},"RTCVideoSource_4":{"timestamp":0},"timestamp":1605197701745},1605197701752] diff --git a/src/test/jest/results/chrome96-standard-stats-p2p-add-transceiver-result.json b/src/test/jest/results/chrome96-standard-stats-p2p-add-transceiver-result.json index f077e375..5189833a 100644 --- a/src/test/jest/results/chrome96-standard-stats-p2p-add-transceiver-result.json +++ b/src/test/jest/results/chrome96-standard-stats-p2p-add-transceiver-result.json @@ -8,9 +8,13 @@ "conferenceUrl": "192.168.1.1/conf-bac9ca22-8c8f-45a4-92a2-a3411cfe398a", "dumpPath": "/Users/nohlmeier/src/rtcstats-server/temp/bac9ca22-8c8f-45a4-92a2-a3411cfe398a", "endDate": 1641601089568, + "isJaaSTenant": false, + "jaasClientId": "", + "jaasMeetingFqn": "", "sessionId": "b2ff55e1-c57e-4fc0-a003-54418278fa92", "startDate": 1641601089525, "statsFormat": "chrome_standard", + "tenant": "", "userId": "test-bac9ca22-8c8f-45a4-92a2-a3411cfe398a" }, "features": { diff --git a/src/test/jest/results/firefox-standard-stats-sfu-result.json b/src/test/jest/results/firefox-standard-stats-sfu-result.json index e169f6a9..b17badbb 100644 --- a/src/test/jest/results/firefox-standard-stats-sfu-result.json +++ b/src/test/jest/results/firefox-standard-stats-sfu-result.json @@ -8,6 +8,9 @@ "conferenceUrl": "192.168.1.1/conf-9195e361-2a5b-4749-923d-7f4d5d111c36", "dumpPath": "/Users/nohlmeier/src/rtcstats-server/temp/9195e361-2a5b-4749-923d-7f4d5d111c36", "endDate": 1641600699878, + "isJaaSTenant": false, + "jaasClientId": "", + "jaasMeetingFqn": "", "sessionId": "d4fe59fa-d0ca-4984-9e8d-0ac8fd6780ed", "startDate": 1641600699825, "statsFormat": "firefox", diff --git a/src/test/jest/results/firefox97-standard-stats-sfu-result.json b/src/test/jest/results/firefox97-standard-stats-sfu-result.json index 9f32c13e..220c38a0 100644 --- a/src/test/jest/results/firefox97-standard-stats-sfu-result.json +++ b/src/test/jest/results/firefox97-standard-stats-sfu-result.json @@ -8,6 +8,9 @@ "conferenceUrl": "192.168.1.1/conf-9eb2f1a0-af02-443f-b97c-e415ecc857e7", "dumpPath": "/Users/nohlmeier/src/rtcstats-server/temp/9eb2f1a0-af02-443f-b97c-e415ecc857e7", "endDate": 1641864713064, + "isJaaSTenant": false, + "jaasClientId": "", + "jaasMeetingFqn": "", "sessionId": "1e501074-10e3-48ec-99bd-9c402d53513c", "startDate": 1641864713041, "statsFormat": "firefox", diff --git a/src/test/jest/results/google-standard-stats-p2p-result.json b/src/test/jest/results/google-standard-stats-p2p-result.json index f5a17cc3..704c420d 100644 --- a/src/test/jest/results/google-standard-stats-p2p-result.json +++ b/src/test/jest/results/google-standard-stats-p2p-result.json @@ -8,6 +8,9 @@ "conferenceUrl": "192.168.1.1/conf-83072254-e24b-4f8d-8162-23e94958ccb3", "dumpPath": "/Users/nohlmeier/src/rtcstats-server/temp/83072254-e24b-4f8d-8162-23e94958ccb3", "endDate": 1641600327015, + "isJaaSTenant": false, + "jaasClientId": "", + "jaasMeetingFqn": "", "sessionId": "bd918844-47a7-4985-a01d-22042108742a", "startDate": 1641600326943, "statsFormat": "chrome_standard", diff --git a/src/test/jest/results/google-standard-stats-sfu-result.json b/src/test/jest/results/google-standard-stats-sfu-result.json index e5a6f8e6..7de4afa3 100644 --- a/src/test/jest/results/google-standard-stats-sfu-result.json +++ b/src/test/jest/results/google-standard-stats-sfu-result.json @@ -8,6 +8,9 @@ "conferenceUrl": "192.168.1.1/conf-d0667072-0689-43bd-b34a-89e147cbf9ce", "dumpPath": "/Users/nohlmeier/src/rtcstats-server/temp/d0667072-0689-43bd-b34a-89e147cbf9ce", "endDate": 1641600611905, + "isJaaSTenant": false, + "jaasClientId": "", + "jaasMeetingFqn": "", "sessionId": "4755c766-a069-4316-b1f1-54829dbc7a69", "startDate": 1641600611868, "statsFormat": "chrome_standard", diff --git a/src/test/jest/results/safari-standard-stats-result.json b/src/test/jest/results/safari-standard-stats-result.json index a360606b..738c0d13 100644 --- a/src/test/jest/results/safari-standard-stats-result.json +++ b/src/test/jest/results/safari-standard-stats-result.json @@ -8,6 +8,9 @@ "conferenceUrl": "192.168.1.1/conf-9f2af46d-0dc9-4040-b1fa-f4bb55f8ab19", "dumpPath": "/Users/nohlmeier/src/rtcstats-server/temp/9f2af46d-0dc9-4040-b1fa-f4bb55f8ab19", "endDate": 1641941576116, + "isJaaSTenant": false, + "jaasClientId": "", + "jaasMeetingFqn": "", "sessionId": "4567a1ea-9b53-4249-812b-e9986eb12423", "startDate": 1641941576052, "statsFormat": "safari", diff --git a/src/test/jest/results/undefined-ice-candidate-result.json b/src/test/jest/results/undefined-ice-candidate-result.json index 70831400..e103bae5 100644 --- a/src/test/jest/results/undefined-ice-candidate-result.json +++ b/src/test/jest/results/undefined-ice-candidate-result.json @@ -14,6 +14,7 @@ "sessionId": "41c8f2f2-eab3-49c7-b568-6d7d4e51fb81", "startDate": 1646901906018, "statsFormat": "chrome_standard", + "tenant": "", "userId": "Lyda-hGl" }, "features": { diff --git a/src/utils/utils.js b/src/utils/utils.js index cb3e24cf..8f48a152 100644 --- a/src/utils/utils.js +++ b/src/utils/utils.js @@ -311,6 +311,23 @@ function getIdealWorkerCount() { return os.cpus().length - 2; } +/** + * + * @param {*} lastLine + */ +function parseLineForSequenceNumber(lastLine) { + const jsonData = JSON.parse(lastLine); + + logger.debug('[ClientMessageHandler] Last sequence number from line: ', lastLine); + if (Array.isArray(jsonData) && jsonData[4] !== undefined) { + logger.debug('[ClientMessageHandler] Last sequence number from dump: ', jsonData[4]); + + return jsonData[4]; + } + + return -1; +} + /** * Get a SQL compliant timestamp (MDY DateStyle) * Time value or timestamp number @@ -402,6 +419,16 @@ function isObject(input) { return typeof input === 'object' && !Array.isArray(input) && input !== null; } +/** + * + * @param {*} tempPath + * @param {*} statsSessionId + * @returns + */ +function getDumpPath(tempPath, statsSessionId) { + return `${tempPath}/${statsSessionId}`; +} + const RequestType = Object.freeze({ PROCESS: 'PROCESS' }); @@ -439,6 +466,8 @@ module.exports = { uuidV4, getSQLTimestamp, isObject, + getDumpPath, addPKCS8ContainerAndNewLine, - obfuscatePII + obfuscatePII, + parseLineForSequenceNumber };