From 2d43be4d7ed2a4dab9a9746fa0901ebf7c2ae825 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Tue, 11 Jun 2024 17:22:44 +0100 Subject: [PATCH] better listener defaults use instant_listen by default, avoids https://github.com/OpenVoiceOS/ovos-dinkum-listener/issues/107 until fixed enabled remove_silence by default, further making the above a better default (as listen sound gets removed by silero vad), safe to do since https://github.com/OpenVoiceOS/ovos-dinkum-listener/pull/122 --- ovos_config/mycroft.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index a8999c5..f87e451 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -448,6 +448,9 @@ "module": "ovos-microphone-plugin-alsa" }, + // if true, will remove silence from both ends of audio before sending it to STT + "remove_silence": true, + // Voice Activity Detection is used to determine when speech ended "VAD": { // silence method defined the main vad strategy @@ -513,7 +516,7 @@ // Skips all checks (eg. audio service confirmation) after the wake_word is recognized and // instantly continues to listen for a command - "instant_listen": false, + "instant_listen": true, // continuous listen is an experimental setting, it removes the need for // wake words and uses VAD only, a streaming STT is strongly recommended