But all of them are 8kHz or less. I guess a more Hz would be better.
The user guide by other hand shows RAW formats like g722 with a sample rate of 16000Hz supported. Has any one tried or has a recomendation on best options?
My user complains about a noise in the background when using WAV with 8kHZ ulaw…so searching for better options.
8000Hz 32-bit float uLaw/aLaw can work perfectly well if you have the right audio editing tools. Maybe throw one over to me on email and I’ll see if I can clean it up for you?
With Genesys MCP / Media Server, we used sox to convert audio file. We tried a lot of format and tools and after using this tool with the following command line, we never received complains and sounds was pretty clear;
# single conversion
sox.exe [Path]\[File].wav -e mu-law -r 8000 -c 1 -b 8 [Output_Path]\[Output_File].wav
# if you have multiple files to convert
for %i in (*.wav) do D:\batch\sox-14.4.1\sox.exe %i -e mu-law -r 8000 -c 1 -b 8 out\%i
It is basically pcmu 8 khz with some tweaking.
Hope this helps.
Thanks guys, will give a try. I use AudaCity or GoldWave usually
Adam, will ask for the original WAV file as I guess editing a compressed file already won’t help much
Thanks!