<div>I downloaded this file which is a set of spanish sounds for freeswitch: </div><div><br></div><div><a href="http://files.freeswitch.org/freeswitch-sounds-es-mx-maria-44100.tar.gz" target="_blank">http://files.freeswitch.org/freeswitch-sounds-es-mx-maria-44100.tar.gz</a></div>

<div><br></div><div>As you see It only has sounds for the 44100 frecuency. </div><div>To generate files for the 8000, 16000 and 32000 frecuencies,  I untarred the file inside freeswitch/sounds directory. </div><div><br></div>
<div>After I untarred the file, there was a directory called es/mx/maria which has all this subdirectories: </div><div><br></div><div>ascii</div><div>currency</div><div>ivr</div><div>phonetic-ascii</div><div>voicemail</div>
<div>
<div>conference</div><div>digits</div><div>misc</div><div>time</div><div>zrtp</div></div><div><br></div><div>For each of these subdirectories I made this:</div><div><br></div><div>cd &quot;one of the directories inside sounds/es/mx/maria &quot;</div>
<div>mkdir 8000</div><div>mkdir 16000</div><div>
mkdir 16000</div><div><br></div><div>cd 44100</div><div><div>for a in *.wav;</div><div>do</div><div>     /usr/bin/ffmpeg -i &quot;$a&quot; -ar 8000 -ac 1 -ab 128 &quot;../8000/&quot;$a;</div><div>     /usr/bin/ffmpeg -i &quot;$a&quot; -ar 16000 &quot;../16000/&quot;$a;</div>
<div>     /usr/bin/ffmpeg -i &quot;$a&quot; -ar 32000 &quot;../32000/&quot;$a;</div><div>done</div></div><div><div><br></div></div><div>Now I have a complete set of spanish sounds for the 8000, 16000, 32000 y 44100 frecuencies</div>
<div><br></div><div>¿What would I need to configure in freeswitch to use these spanish sounds instead of the english ones?</div><div><br></div><div>Thanks in advance for your kind help. </div><div><br></div><div><br></div>
<div><br></div>