Skip to content

Commit

Permalink
better listener defaults
Browse files Browse the repository at this point in the history
use instant_listen by default, avoids OpenVoiceOS/ovos-dinkum-listener#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 OpenVoiceOS/ovos-dinkum-listener#122
  • Loading branch information
JarbasAl authored Jun 11, 2024
1 parent 9a8fd1f commit 2d43be4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2d43be4

Please sign in to comment.