Asterisk » Recording voice prompts with Audacity and SOX
Asterisk comes with an extensive set of voice prompts in many languages but there are situations where you may need to record your own voice prompts. It can be tricky to get it right. This article describes the method I use to achieve that. I use Audacity and SOX to record and convert the voice prompt files.
I use Linux, so I did not test this method with Audacity for Windows. I don’t know if SOX if available on Windows. Also, i know that you can export in ULAW,ALAW and GSM format directly with Audacity, but I did not test that either. The reason I use SOX is so that I can use a script to convert the prompts to multiple formats at once instead of manually doing it for each one..
Recording your own custom voice prompts
If you have, or know someone with a good voice, you can record your voice prompts yourself with a microphone of decent quality. Try to find a place where you can control background noise.
You may also purchase your voice prompts online. They usually charge you by the word and send you back the recording in WAV format.
- June Wallack (french, english)
- Allison Smith (english)
personally, I use an online text to speech (tts) synthesizer to produce the prompts i need. I just record the output from the sound card for each prompts and put them together in a master file. By the way, yes, i am aware that you can use a TTS with Asterisk. I tried a few but did not find one of sufficient quality in french. I prefer to use pre-recorded prompts instead.
You can use these online TTS :
Recording with audacity
Make sure the audio track rate is 16000 Hz and also set the project rate to 16000 Hz. The track must also be 1 channel (mono) only.
Batch exporting with Audacity
It is possible to export multiple parts of a file at once with Audacity. You can do that by creating labels. First, you need to select the part that you want to export and press CTRL+B or go to “Tracks > Add label at selection”. Then give a name to the label, Audacity will use this name to create the individual files. You can adjust the start and end position of the label later by using the “handles” on the label track.
I usually leave 60 milliseconds of silence before and after the prompts. It depends of where the prompts will be used. If it is at the end of a sentence, you can leave 100 ms after. For digits, you may need a shorter silence before and after to make it sound good when they are played back to back. For example, let’s say that i need three prompts : “The current temperature is”, “minus” and “15”. I will leave less silence after “minus” than the others. To test the silence delay, I copy and paste the three prompts together in another file and play it back. I adjust the delay until it sounds natural.
Click on File => Export multiple…
Select “Other uncompressed format” in export format. Next, click on Options
Select “Raw (header-less)” and “Signed 16-bit PCM”. Click OK and then, Export
Audacity will export each segment defined by labels to a .raw file at the location you specified.
Convert to formats used by Asterisk
I use sox to convert the files in other formats Asterisk uses (ulaw, alaw, gsm, etc…)
SLN16
The raw file audacity produced is already a signed 16 bit format, just rename the file to .sln16
U-LAW
A-LAW
GSM
WAV (8k)
G-722
SOX does not support g722. So for this format, you will need a converter. I used a tool made by Kevin P. Fleming and Russell Bryant from Digium.
Here is the source code :
And this is the script i use to convert the files all at once :