unispeech / asterisk-unimrcp

UniMRCP modules for Asterisk
http://www.unimrcp.org/asterisk
GNU General Public License v2.0
48 stars 36 forks source link

Continuous No-Input Error After a While #56

Closed omerbitikcioglu closed 2 years ago

omerbitikcioglu commented 2 years ago

I want to do continuous speech recognition.

My dialplan:

[general]
autofallthrough = no

[from-internal]
exten = 200,1,Answer()
    same = n,Wait(1)
    same = n,SpeechCreate()
    same = n,SpeechBackground(hello)
    same = n,Verbose(0, Result is: ${SPEECH_TEXT(0)})
    same = n(record),SpeechBackground()
    same = n,Wait(1)
    same = n,Verbose(0, Result is: ${SPEECH_TEXT(0)})
    same = n,Goto(record)

It works fine but if you don't give input, after a while it continuously gives warning below and do not make any recognition: image

It supposed to recognize again when I am talked.

omerbitikcioglu commented 2 years ago

Problem was the dialplan. I destroy the speech and create again when there is silence and it is solved.