标签:修改 依赖 module 通过 http bsp configure 直接 free
ubuntu16.04 lts 安装freeswitch:
0、安装一堆依赖包。
1、使用root权限 su root ,
FSfile=$(curl -s https://files.freeswitch.org/releases/freeswitch/ | sed -n ‘s/.*"\(freeswitch\-[0-9]*\.[0-9]*\.[0-9]*\.tar\.gz\)".*/\1 /p‘ | tail -n 1) && echo Downloading $FSfile && curl https://files.freeswitch.org/freeswitch-releases/$FSfile | tar -xz && mv ${FSfile/.tar.gz//} freeswitch
2、进入freeswitch目录
因为需要支持mp3 格式,因此需要安装mod_shout
mod_shout 需要的依赖包:apt-get install libvorbis0a libogg0 libogg-dev libvorbis-dev libshout3-dev libmpg123-dev libmp3lame-dev
a、修改 modules.conf 大概121行
formats/mod_shout
把前面的#去掉
b、修改modules.conf.xml 110行左右 把注释去掉
<!--For icecast/mp3 streams/files-->
<load module="mod_shout"/>
./configure
make
make install
3、如果遇到编译mod_shout失败 因为 libmpg123-dev,则从mpg123官网直接下载新版本后编译安装即可解决。
4、安装完成后 可以通过 module_exits mod_sofia mod_shout来看看关键模块是否安装成功。
标签:修改 依赖 module 通过 http bsp configure 直接 free
原文地址:http://www.cnblogs.com/robinliu1238/p/7600437.html