How do you suggest doing that? How can I convert wav files to gsm files? thanks Shoval Tomer, MCSE IT Manager Softov Advanced System Ltd. Email: shoval@softov.co.il Mobile: 972-55-229220 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20031102/f84d7805/attachment.htm
Shoval Tomer wrote:> How do you suggest doing that? > > How can I convert wav files to gsm files? > > > > thanks >#!/bin/sh for i in *.wav; do sox $i -r 8000 `basename $i *.wav`.gsm resample -ql; done> >
Why do things the hard way? ; used to record prompts exten => 205,1,Wait(2) exten => 205,2,Record(/tmp/asterisk-recording:gsm) exten => 205,3,Wait(2) exten => 205,4,Playback(/tmp/asterisk-recording) exten => 205,5,Wait(2) exten => 205,6,Hangup bkw On Sun, 2 Nov 2003, Shoval Tomer wrote:> How do you suggest doing that? > > How can I convert wav files to gsm files? > > > > thanks > > > > > > Shoval Tomer, MCSE > > IT Manager > > Softov Advanced System Ltd. > > Email: shoval@softov.co.il > > Mobile: 972-55-229220 > > > >
> Besides, even if I didn't have the files ready, I wouldn't use my lovely > voice for it - I'll go to a recording studio with a professional (talking > about a production environment) so it's good to know how to do this > yourself, in case the studio doesn't know how to record them in this > format. >For professional recording you can use the same voice as the original prompts.. For details see http://www.digium.com/index.php?menu=thevoice The price seems reasonable to me.. According to John Todd's site the turnaround can be rather fast. (http://www.loligo.com/asterisk/sounds/Sounds-README.txt) http://www.loligo.com/asterisk/ for access to his directory of additional prompts. Robert