1.debian11 freeswitch 编译安装步骤
2.freeswitch 新模块开发一(linux环境)3.freeswitch 编译安装问题汇总4.freeswitch 在visualstudio 2017 中编译运行5.freeswitch 新模块开发二(linux环境)6.debian 编译安装 opensips 7.debian 编译安装rtpproxy8.voip服务监控及运维9.debian安装kamailio10.VS2019 开发freeswitch 问题排查汇总11.freeswitch 新模块开发三(VS2019)12.vs2019 编译加载 mod_soundtouch 进行变声测试13.freeswitch模块开发【问题排查】—load模块时提示 127错误14.freeswitch模块开发【问题排查】—mod_soundtouch 模块变声无效,电流音15.freeswitch模块开发【问题排查】—已存在XXX.lob 中定义,重复引入依赖16.freeswitch模块开发—mod_unimrcp 编译及加载(VS2019)建议在 Debian 系统中安装
# 安装依赖
apt install -y gnupg2 wget autoconf lsb-release libtool libtool-bin libtiff-dev uuid-dev pkg-config openssl libssl-dev sqlite3 libsqlite3-dev libcurl4-openssl-dev libspeexdsp-dev libldns-dev libedit-dev yasm nasm ffmpeg libswscale-dev libavformat-dev lua5.4 liblua5.4-dev libopus-dev libpq-dev libmariadb-dev unixodbc unixodbc-dev libsndfile1-dev git clone https://github.com/freeswitch/sofia-sip.git cd sofia-sip ./bootstrap.sh -j ./configure make make install ldconfig cd /usr/local/src yum install libatomic git clone https://github.com/signalwire/libks.git cd libks cmake . make make install git clone https://github.com/freeswitch/spandsp.git cd spandsp/ git reset --hard 67d2455efe02e7ff0d897f3fd5636fed4d54549e #使用该提交版本,可以避免bug ./bootstrap.sh ./configure make make install export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:${PKG_CONFIG_PATH} echo "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:${PKG_CONFIG_PATH}" >> /etc/profile source /etc/profile ldconfig
# 在 make freeswitch 的时候如果提示找不到/private/v80.h ,则手动把 src/spandsp/private/v80.h 复制到/usr/local/...中 git clone https://github.com/signalwire/freeswitch.git -bv1.10 freeswitch cd freeswitch ./bootstrap.sh -j # 预编译 ./configure --prefix=/usr/local/freeswitch # 编译。如果是多核处理器,比如4核,可以用make -j4,能加快编译速度 # 编译时可以编辑modules.conf,取消编译mod_signalwire、mod_opus make make install
合集:
freeswitch
标签:
freeswitch
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
2017-09-22 多线程(八)常用的线程模型