@webex/event-dictionary-ts 1.0.1477 → 1.0.1479
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6611,6 +6611,18 @@
|
|
|
6611
6611
|
"type": "number",
|
|
6612
6612
|
"minimum": 0.0,
|
|
6613
6613
|
"maximum": 9223372036854776000.0
|
|
6614
|
+
},
|
|
6615
|
+
"audioCaptureFirstSpeechTime": {
|
|
6616
|
+
"description": "Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer",
|
|
6617
|
+
"type": "number",
|
|
6618
|
+
"minimum": 0.0,
|
|
6619
|
+
"maximum": 9223372036854776000.0
|
|
6620
|
+
},
|
|
6621
|
+
"audioPlaybackFirstSpeechTime": {
|
|
6622
|
+
"description": "Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback",
|
|
6623
|
+
"type": "number",
|
|
6624
|
+
"minimum": 0.0,
|
|
6625
|
+
"maximum": 9223372036854776000.0
|
|
6614
6626
|
}
|
|
6615
6627
|
}
|
|
6616
6628
|
},
|
|
@@ -7111,6 +7111,18 @@
|
|
|
7111
7111
|
"type": "number",
|
|
7112
7112
|
"minimum": 0.0,
|
|
7113
7113
|
"maximum": 9223372036854776000.0
|
|
7114
|
+
},
|
|
7115
|
+
"audioCaptureFirstSpeechTime": {
|
|
7116
|
+
"description": "Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer",
|
|
7117
|
+
"type": "number",
|
|
7118
|
+
"minimum": 0.0,
|
|
7119
|
+
"maximum": 9223372036854776000.0
|
|
7120
|
+
},
|
|
7121
|
+
"audioPlaybackFirstSpeechTime": {
|
|
7122
|
+
"description": "Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback",
|
|
7123
|
+
"type": "number",
|
|
7124
|
+
"minimum": 0.0,
|
|
7125
|
+
"maximum": 9223372036854776000.0
|
|
7114
7126
|
}
|
|
7115
7127
|
}
|
|
7116
7128
|
},
|
|
@@ -3271,6 +3271,14 @@ export interface Event {
|
|
|
3271
3271
|
* WmeMediaEngineEventType_Audio_DeviceStatus_Playback_DataAvailable - first time
|
|
3272
3272
|
*/
|
|
3273
3273
|
firstPlaybackDataAvailable?: number;
|
|
3274
|
+
/**
|
|
3275
|
+
* Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer
|
|
3276
|
+
*/
|
|
3277
|
+
audioCaptureFirstSpeechTime?: number;
|
|
3278
|
+
/**
|
|
3279
|
+
* Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback
|
|
3280
|
+
*/
|
|
3281
|
+
audioPlaybackFirstSpeechTime?: number;
|
|
3274
3282
|
additionalProperties?: false;
|
|
3275
3283
|
};
|
|
3276
3284
|
/**
|
|
@@ -14475,6 +14483,14 @@ export interface ClientEvent {
|
|
|
14475
14483
|
* WmeMediaEngineEventType_Audio_DeviceStatus_Playback_DataAvailable - first time
|
|
14476
14484
|
*/
|
|
14477
14485
|
firstPlaybackDataAvailable?: number;
|
|
14486
|
+
/**
|
|
14487
|
+
* Timestamp in milliseconds of first VAD (voice activity detection) detected for capturer
|
|
14488
|
+
*/
|
|
14489
|
+
audioCaptureFirstSpeechTime?: number;
|
|
14490
|
+
/**
|
|
14491
|
+
* Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback
|
|
14492
|
+
*/
|
|
14493
|
+
audioPlaybackFirstSpeechTime?: number;
|
|
14478
14494
|
additionalProperties?: false;
|
|
14479
14495
|
};
|
|
14480
14496
|
/**
|
package/package.json
CHANGED