返回列表 發帖

【角色茶桌】—— Asterisk 1.8 的 g729,g723,iLBC,Speex,其他怎样安装呢?

如果安装了Asterisk 1.8后,你慢慢发现你的Asterisk缺少了一些常用的codecs,如g729,g723,iLBC,Speex,这幅帖子再一次说明怎样安装,如果你知道希望参与讨论。

角色

本帖最後由 bubblestar 於 2011-9-13 21:45 編輯

SPEEX 在compile Asterisk 之前安裝如下,Asterisk 裝好後就會有的:

# Codec Translators > codec_speex
cd /usr/src/asterisk-complete
wget http://downloads.xiph.org/releases/speex/speex-1.2rc1.tar.gz
tar xvzf speex-1.2rc1.tar.gz
cd speex-1.2rc1
./configure && make && make install

iLBC 是在make menuselect 之前加上去如下:

cd asterisk-1.8
./configure
#this is only for format MP3 - SVN required
contrib/scripts/get_mp3_source.sh
contrib/scripts/get_ilbc_source.sh
make menuselect
make && make install
make samples
make progdocs
make config
make install-logrotate

chkconfig asterisk on
service dahdi start
service asterisk start

codec_g723-ast18-gcc4-glibc-atom.so 及 codec_g729-ast18-gcc4-glibc-atom.so 可以到 http://asterisk.hosting.lv/ 下載,然後,直接把它複制到以下位置即可。

/usr/lib/asterisk/modules


接著,Restart asterisk

/etc/init.d/asterisk restar

TOP

谢谢bubblestar兄的信息,下次再找得时候,去茶馆找找就可以。

角色

TOP

Intel ATOM-based g729 and g723 codecs may be obtained from the following files:

codecs_g729_g723_atom.zip (246.64 KB)

YH

TOP

返回列表