mirror of
https://github.com/leon-ai/leon.git
synced 2025-01-03 06:06:06 +03:00
refactor(web app): enable sound on After Speech option
This commit is contained in:
parent
6b25106f56
commit
1e95d0abfd
@ -68,7 +68,7 @@ export default class Client {
|
||||
if (this.info.after_speech && data.is_final_answer) {
|
||||
// Enable recording after the speech + 500ms
|
||||
setTimeout(() => {
|
||||
this._recorder.start(false)
|
||||
this._recorder.start()
|
||||
this._recorder.enabled = true
|
||||
|
||||
// Check every second if the recorder is enabled to stop it
|
||||
@ -77,7 +77,7 @@ export default class Client {
|
||||
if (this._recorder.countSilenceAfterTalk <= 8) {
|
||||
// Stop recording if there was no noise for 8 seconds
|
||||
if (this._recorder.countSilenceAfterTalk === 8) {
|
||||
this._recorder.stop(false)
|
||||
this._recorder.stop()
|
||||
this._recorder.enabled = false
|
||||
this._recorder.countSilenceAfterTalk = 0
|
||||
clearInterval(id)
|
||||
|
Loading…
Reference in New Issue
Block a user