我正在实现一个星号服务器。
我正在使用 PJSUA 将 wav 文件发送到我的手机,通过星号服务器。
这是我的扩展名。
[appel-sortant] ; Initialisation
exten => _X.,1,Set(LOOP=0)
exten => _X.,2,Set(MAX=3)
exten => _X.,n,Set(ASTREINTE=${EXTEN})
exten => _X.,n,Goto(astreinte,${EXTEN},10)
exten => _X.,500,Hangup
[astreinte]
exten => _X.,10,Dial(SIP/${ASTREINTE}@forfait-ovh,20,gS(10))
exten => _X.,n,AMD()
exten => _X.,n,NoOp(${DIALSTATUS}) ; Here got ANSWER status
exten => _X.,n,NoOp(${AMDSTATUS}) ; Here got MACHINE or NOTSURE
exten => _X.,n,Hangup
我的问题是:
1/当我在从 PJSUA 发送 wav 文件时拨打我的电话号码时,通话结束时的 AMD 状态为 MACHINE
2/如果我在没有 wav 文件的情况下使用 pjsua 呼叫,我得到了一个 AMDSTATUS = NOTSURE。
AMD() 是检测答录机还是来电机?
这是我的Pjsua行文件:
pjsua --null-audio --local-port=5061 --id sip:username@192.168.X.X --registrar sip:192.168.X.X --realm * --username username --password password --auto-play --play-file=./sounds/sound.wav sip:0123456789@192.168.X.X
我目前在星号 1.6.2.9-2squeeze 上。
您需要尝试AMD功能中的设置。 您有以下参数:
AMD([initialSilence[,greeting[,afterGreetingSilence[,totalAnalysis Time[,miniumWordLength[,betweenWordSilence[,maximumNumberOfWords[,silenceThreshold[,maximumWordLength]]]]]]]]])
initialSilence - Is maximum initial silence duration before greeting.
If this is exceeded set as MACHINE
greeting - is the maximum length of a greeting.
If this is exceeded set as MACHINE
afterGreetingSilence - Is the silence after detecting a greeting.
If this is exceeded set as HUMAN
totalAnalysis Time - Is the maximum time allowed for the algorithm
to decide HUMAN or MACHINE
miniumWordLength - Is the minimum duration of Voice considered to be a word
betweenWordSilence - Is the minimum duration of silence after a word to consider the audio that follows to be a new word
maximumNumberOfWords - Is the maximum number of words in a greeting
If this is exceeded set as MACHINE
silenceThreshold - How long do we consider silence
maximumWordLength - Is the maximum duration of a word to accept.
If exceeded set as MACHINE
根据从 pjsua 应用程序检测到的静音模式、声音和声音长度,您应该能够确定这些参数的正确值,以实现所需的结果。
是 - AMD() 检测是否拿起答录机。 它可以返回的可能值为:机器 |人类 |不确定 |挂断电话
我不知道函数的内部工作原理,但如果你正在播放一个 wav 文件 - amd() 可能认为它确实是一个答录机。
您的方案似乎提供了正确的结果。你的拨号计划和Pjsua线路对我来说似乎很好。