Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to increase volume level of sip calls in asterisk?

Tags:

asterisk

I want to increase volume level of calls in asterisk.I tried with VOLUME function but it doesn't change. I am using asterisk 11.

like image 380
soni8010 Avatar asked Mar 14 '23 00:03

soni8010


2 Answers

I had to increase the volume of calls to a call center . According to the documentation of Asterisk 11 must use the VOLUME function; in this way:

exten => test,1,NoOp(-- TESTING EXTENSION --)
same => n,Answer()    
same => n,Set(VOLUME(RX,p)=4) ;for 
....   
same => n,hangup()

Switches between RX or TX in order to increase reception or transmission.

I do not know exactly what the maximum and minimum value for this function , but 4 worked perfectly in my case.

Adding the argument p also increases the volume of the DTMF tones.

https://wiki.asterisk.org/wiki/display/AST/Asterisk+11+Function_VOLUME

like image 68
billmurray Avatar answered May 09 '23 01:05

billmurray


You should make sure the RTP Audio goes through asterisk (rtp media proxy functionality). This can be achieved by the directmedia=no or using different codecs on phones to build a translation path. Also volume can be changed on most of the endpoint devices as well. It has less impact on network usage and performance. Check soft/hard phone settings.

like image 42
viktike Avatar answered May 09 '23 01:05

viktike