Re: [Asterisk-Users] Voicemail volume adjustment

2006-06-29 Thread Dustin Wildes
, 2006 1:03 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Voicemail volume adjustment Why use an application like sox - when you can make the voicemail application do it natively: exten = s,1,Dial(SIP/100,10) exten = s,2,Voicemail([EMAIL PROTECTED]|ug(10

Re: [Asterisk-Users] Voicemail volume adjustment

2006-06-29 Thread Dustin Wildes
Okay, that would make sense if you wanted 2 different volume levels for the messages. Just typically if the email attachment has low volume, usually the message on the phone is low too. In any case - you have 2 options now for adjusting volume. :-) Aaron Daniel wrote: The other problem is

RE: [Asterisk-Users] Voicemail volume adjustment

2006-06-28 Thread Adam Robins
PROTECTED]; 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: RE: [Asterisk-Users] Voicemail volume adjustment In voicemail.conf: externnotify=/opt/asterisk-1.2.7.1/sbin/vm-audio The attached script should increase as much as possible without clipping. Cheers, Cullin

RE: [Asterisk-Users] Voicemail volume adjustment

2006-06-28 Thread Cullin J. Wible
Discussion Subject: RE: [Asterisk-Users] Voicemail volume adjustment This works great, however, when I look at the full log, it says that the sendmail is executing prior to vm-audio. Any way to change this? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [Asterisk-Users] Voicemail volume adjustment

2006-06-28 Thread Dustin Wildes
recording the voicemail message. The units are whole-number decibels (dB). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Technical Support Sent: Tuesday, June 27, 2006 3:51 PM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Voicemail

RE: [Asterisk-Users] Voicemail volume adjustment

2006-06-28 Thread Cullin J. Wible
Of Dustin Wildes Sent: Wednesday, June 28, 2006 1:03 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Voicemail volume adjustment Why use an application like sox - when you can make the voicemail application do it natively: exten = s,1,Dial(SIP/100,10

RE: [Asterisk-Users] Voicemail volume adjustment

2006-06-28 Thread Aaron Daniel
, June 28, 2006 1:03 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: Re: [Asterisk-Users] Voicemail volume adjustment Why use an application like sox - when you can make the voicemail application do it natively: exten = s,1,Dial(SIP/100,10) exten = s,2,Voicemail

[Asterisk-Users] Voicemail volume adjustment

2006-06-27 Thread Technical Support
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,

Re: [Asterisk-Users] Voicemail volume adjustment

2006-06-27 Thread Mojo with Horan Company, LLC
I know this isn't what you asked for, but I think I achieved the same effect by changing the format= line to put wav first, not wav49. Of course, if you've already modified this line to use gsm or something else, then this really wont' help :P Moj Technical Support wrote: I frequently find

Re: [Asterisk-Users] Voicemail volume adjustment

2006-06-27 Thread Aaron Daniel
There's a patch up on the bugs site that uses sox to raise/lower the volume of wav's. We've been using it for about 5 months now without any glaring issues (we also convert to mp3 and do a few other things, but this patch is only the volume part). http://bugs.digium.com/view.php?id=6237 On

Re: [Asterisk-Users] Voicemail volume adjustment

2006-06-27 Thread William Piper
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

RE: [Asterisk-Users] Voicemail volume adjustment

2006-06-27 Thread Cullin J. Wible
27, 2006 3:51 PM To: asterisk-users@lists.digium.com Subject: [Asterisk-Users] Voicemail volume adjustment 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