| 本帖最後由 角色 於 2015-6-7 19:32 編輯 
 Installation of G729 code
 
 If your voice quality is not very good due to the bandwidth available for VoIP, then you may consider to install G729 on your Asterisk box. You can use the following link to install the G729 for your system for the purpose of codec evaluation.
 
 Celeron is Pentium3/Pentium4/Core with smaller cache.
 
 
 How to check whether your system is 32-bit or 64-bit of your Debian system?
 
 uname -m
 x86_64 ==> 64-bit kernel
 i686   ==> 32-bit kernel
 
 Since my Debian system is a 32-bit OS sys,  I went to the link [1] and under ast13 directory, I obtained the file "codec_g729-ast130-gcc4-glibc-pentium4.so". I renamed it to codec_g729.so. I used the command "scp codec_g729.so root@10.0.88.14:/usr/lib/asterisk/modules". After the remote copy operation completed, I ssh to the remote site using the command "ssh root@10.0.88.14". It asked me to enter the password. I went to the directory /usr/lib/asterisk/modoules and chmod 755 codec_g729.so. Restarted the asterisk and issued the command "core show translation recalc 10", I got the following figure
 
 
     
 Reference:
 [1] http://asterisk.hosting.lv
 |