繁体   English   中英

如何消除星号 PBX 中的噪音?

[英]How can I remove noise in asterisk PBX?

如何消除星号 PBX 中的噪音? 现在我正在使用 Digium pri 卡,它在通话时会产生噪音。

任何人都可以帮助解决这个问题吗?

您可以使用Denoise()

[from-trunk]
exten => 3000,1,Answer()                      
exten => 3000,2,Playback(welcome)             
exten => 3000,3,Set(DENOISE(rx)=on)           
exten => 3000,4,Set(DENOISE(tx)=on)           
exten => 3000,5,Dial(SIP/300@10.9.24.50:5060) 
exten = _X.,n,Hangup()

在分机 3000 上回答

在此处播放 IVR(可选)

接收降噪

传输降噪

向其他 PBX 分机发送呼叫

在此处结束拨号程序代码

PRI卡是数字卡,不会产生噪音,不做任何模拟操作。

所以噪音是在 PSTN/PRI 端的某个地方,而不是在你的 pbx 上。

您可以使用功能 DENOISE,但它可以降低声级。

pro-sip*CLI> core show function DENOISE 

  -= Info about function 'DENOISE' =- 

[Synopsis]
Apply noise reduction to audio on a channel. 

[Description]
The DENOISE function will apply noise reduction to audio on the channel that
it is executed on. It is very useful for noisy analog lines, especially when
adjusting gains or using AGC. Use 'rx' for audio received from the channel
and 'tx' to apply the filter to the audio being sent to the channel.
Examples:
exten => 1,1,Set(DENOISE(rx)=on)
exten => 1,2,Set(DENOISE(tx)=off)

[Syntax]
DENOISE(channeldirection)

[Arguments]
channeldirection
    This can be either 'rx' or 'tx'  the values that can be set to this
    are either 'on' and 'off'

[See Also]
Not available

PRI 发出噪音是不正常的。 您需要执行以下操作。

在两个外部电话之间从 PRI 发起呼叫以确保 PRI 没有噪音。 如果您观察到的噪音一定是 PRI 故障或卡故障。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM