After ordering the voice acting from a professional announcer and cutting in the sound editor, it was necessary to save the sounds in different formats, the original was in wav, so I’ll give an example of converting through sox (it already was in the system with Asterisk):
sox -V vm-intro.wav -r 8000 -c 1 -t ul vm-intro.ulaw sox -V vm-intro.wav -r 8000 -c 1 -t al vm-intro.alaw sox -V vm-intro.wav -r 8000 -c 1 -t gsm vm-intro.gsm
The codec g722 does not seem to support it, at least in man sox did not find it, so it installed ffmpeg (on the Ubuntu Server system):
sudo apt-get install ffmpeg
And performed the conversion:
ffmpeg -i vm-intro.wav -ar 16000 -acodec g722 vm-intro.g722
Standard directory with Asterisk sounds – /usr/share/asterisk/sounds