How to increase volume level of sip calls in asterisk?

soni8010 picture soni8010 · Dec 3, 2015 · Viewed 9k times · Source

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.

Answer

billmurray picture billmurray · Apr 14, 2016

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