VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
jmeksavan at hotmail.com Guest
|
Posted: Tue Apr 01, 2008 2:31 pm Post subject: [asterisk-users] Voicemail- Recorded Mesage Low Volume |
|
|
Asterisk Users,
I am running Asterisk 1.4.11, Zaptel 1.4.5.1, and Librpi 1.4.1 on a Debian "Etch" system. On the recorded voice mail messages, the volume is really low when retrieving them with my cell phone. I tried with multiple cell phones with the volume level high and still, the same problem. I tried to increase the rxgain to 12.2 in the zapata.conf file and it had no affect on the volume. So, tried to add the "g" option on the asterisk voicemail command, like this:
exten => s-NOANSWER,1, Voicemail(u${EXTENSION}|g(10))
and the volume remained the same. I cannot find any good suggestions on the internet in dealing with this issue.
Can the volume of the recorded voice mail message be changed? If so, what I am doing wrong? Any input would be greatly appreciated. Thanks.
Best Regards,
John
_________________________________________________________________
Use video conversation to talk face-to-face with Windows Live Messenger.
http://www.windowslive.com/messenger/connect_your_way.html?ocid=TXT_TAGLM_WL_Refresh_messenger_video_042008
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20080401/a72df32f/attachment.htm |
|
Back to top |
|
|
support at drdos.info Guest
|
Posted: Tue Apr 01, 2008 3:08 pm Post subject: [asterisk-users] Voicemail- Recorded Mesage Low Volume |
|
|
John Meksavan wrote:
Quote: | level high and still, the same problem. I tried to increase the rxgain
to 12.2 in the zapata.conf file and it had no affect
| You'd want to fiddle with the txgain(Transmit)
Doug
--
Ben Franklin quote:
"Those who would give up Essential Liberty to purchase a little Temporary Safety, deserve neither Liberty nor Safety." |
|
Back to top |
|
|
Guest
|
Posted: Tue Apr 01, 2008 7:29 pm Post subject: [asterisk-users] Voicemail- Recorded Mesage Low Volume |
|
|
Doug Lytle wrote:
Quote: | John Meksavan wrote:
Quote: | level high and still, the same problem. I tried to increase the rxgain
to 12.2 in the zapata.conf file and it had no affect
|
You'd want to fiddle with the txgain(Transmit)
Doug
| He might actually want to deal with rxgain, because it could be
perceived as a low volume coming into the box from the PSTN, hence being
'received' into asterisk...? |
|
Back to top |
|
|
daniel at highdesertch... Guest
|
Posted: Wed Apr 02, 2008 11:29 am Post subject: [asterisk-users] Voicemail- Recorded Mesage Low Volume |
|
|
On Apr 1, 2008, at 5:22 PM, asterisk-users-request at lists.digium.com
wrote:
Quote: | Can the volume of the recorded voice mail message be changed? If
so, what I am doing wrong? Any input would be greatly appreciated.
Thanks.
|
I had a similar problem in our setup where we e-mail the recorded
messages to e-mail retrieval. But this also helps standard phone
retrieval too. What I did was edit the /usr/sbin/safe_asterisk script
and add:
PATH="/usr/local/bin:$PATH"
At the top of the script. This would let me override the default sox
implementation that Asterisk uses. Then I loaded in a script (called
sox) that would compress and normalize the recorded audio (It
compresses to deal with the spikes of the noise of the handset being
hung up, etc.). It works pretty well for us and makes the volume
pretty good so we don't have to crank up the volume on our computers
or phones to listen to voicemail messages. And we can't adjust the
rxgain as it is already a good volume for normal calls.
Daniel
--CUT--
#!/bin/sh
#
# $1 = -v
# $2 = number
# $3 = inFile
# $4 = outFile
#
REALSOX="/usr/bin/sox"
if [ "$1" != "-v" ]; then
$REALSOX $*
exit $?
fi
INFILE="$3"
OUTFILE="$4"
#
# Perform the gain adjustment.
#
$REALSOX "$INFILE" "$OUTFILE" compand 0.1,0.3
-60,-60,-30,-15,-20,-12,-4,-8,-2,-7 0 0 0.2
--CUT-- |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|