[Asterisk-Users] Voicemail volume adjustment

William Piper william.piper at gmail.com
Tue Jun 27 13:17:39 MST 2006


Here is a bash script that will increase volume of all wav files in a
directory:
-----------------------
#!/bin/bash
for i in *.wav; do
val=${i%.wav}
echo converting $val.wav
sox $i -v 2 $I $val.wav
done
------------------------
-v 2 will increase the volume 2 times.

Here is a patch that someone else wrote, I haven't tested it or used it.
http://lists.digium.com/pipermail/asterisk-users/2003-March/000735.html

Enjoy,

bp



> Technical Support wrote:
> > I frequently find voice messages are emailed to users with insufficient
> > volume - barely audible. I would like to have asterisk run a sox command
> to
> > adjust the volume of each message before emailing (perhaps once the
> message
> > has been left).
> >
> > Has anyone done this?  Care to share the steps?
> >
> > Thanks,
> > MD
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20060627/61d1013d/attachment.htm


More information about the asterisk-users mailing list