From 7f7ca70210b61c4aeb6b06eb8a6903ea9262623e Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 6 Feb 2025 12:11:24 -0700 Subject: [PATCH] Change value of yealink_voice_vad to 0 A value of 0 disables voice activity detection. VAD when enabled on a Yealink T54W made the audio at the beginning of the call start at the beginning of the call and sometimes took 1 to 30 seconds to start. Recommend changing this value on all systems using Yealink to use 0 to disable voice activity detection. Currently yealink_voice_vad is used in t46s, t41s, and t54w --- app/yealink/app_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/yealink/app_config.php b/app/yealink/app_config.php index cff1b28fe1..28c3ff6cd7 100644 --- a/app/yealink/app_config.php +++ b/app/yealink/app_config.php @@ -1420,7 +1420,7 @@ $apps[$x]['default_settings'][$y]['default_setting_category'] = "provision"; $apps[$x]['default_settings'][$y]['default_setting_subcategory'] = "yealink_voice_vad"; $apps[$x]['default_settings'][$y]['default_setting_name'] = "text"; - $apps[$x]['default_settings'][$y]['default_setting_value'] = "1"; + $apps[$x]['default_settings'][$y]['default_setting_value'] = "0"; $apps[$x]['default_settings'][$y]['default_setting_enabled'] = "true"; $apps[$x]['default_settings'][$y]['default_setting_description'] = "Set 1 = On, 0 = Off (default)"; $y++;