Documentation

Support

Vivox Unreal SDK

Vivox Unreal SDK

VAD adjustments

How to adjust voice activity detection settings.
Read time 1 minuteLast updated 2 days ago

To make adjustments to the VAD settings, use:
  • vx_req_aux_set_vad_properties
  • vx_req_aux_get_vad_properties

Setting the VAD Hangover, Sensitivity, and Noise Floor

In this example, the default values for the
vad_hangover
,
vad_sensitivity
, and
vad_noise_floor
are provided, and
vad_auto
has been disabled.
vx_req_aux_set_vad_properties_t *req;vx_req_aux_set_vad_properties_create(&req);req->vad_hangover = 2000;req->vad_sensitivity = 43;req->vad_noise_floor = 576;req->vad_auto = 0;vx_issue_request(&req->base);

VAD adjustments • Vivox Unreal SDK • Unity Docs