CCITT A-Law 8 bits / 8KHz ... and U-Law

Yes this is useful for voice over IP answering machines projects. It’s strange that Nuendo does not do that. More it’s a compression function available natively inside Windows (i don’t know for MACs).

In the meantime you could use Wavelab watch folder to do that automatically.

Or use another less expensive batch converter software that can do this. Seems that a couple ones are doing this. Google it : “audio converter watch folder”.

Or simply use a Task Automation software, Robotask for example, that can watch for file creation inside a folder and run a command on it, for example start the free command line audio file converter SOX and delete the original file after compression. SOX is frequently used for conversion to uLaw and ALaw. It is the Swiss Army knife of sound conversion / processing programs. I was using that when i was working in the VOIP market. Free and good quality.

Another possibility would be the Watch 4 Folder software (free version for a single monitored folder). Using probably a change folder event, not file creation.

http://www.leelusoft.altervista.org/watch-4-folder.html

Export to 16 bits 48 KHz .wav from Nuendo and do the final conversion with Sox.

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

http://sox.sourceforge.net/

I’ve read that Wavelab use Sox internally for re-sampling.

Instead of Sox, you could use FFMPEG that will give the possibility to convert to multiple file formats at the same time on the same command line :

ffmpeg -i input.wav output.ogg output.mp3 output.flac

And on linux there is the possibility to make things more parallel to better use multi core processors using “parallel” command :

parallel ffmpeg -i {1} {1.}.{2} ::: *.wav ::: ogg mp3 flac

{1} = replacement string for first input source
{1.} = replacement string for first input source with extension removed
{2} = replacement string for second input source
::: *.wav = input source 1
::: ogg mp3 flac = input source 2

Hopefully the telephony market is now (slowly) switching to something better than the (legacy we could say !!) 8 KHz ALaw / ulaw now, thanks to smartphones and VOIP phones with better codecs !

So do no forget to keep your 16 bits 48 KHz original files, as one day or another perhaps you’ll need them for a client.