freeswitch编译

debian的包太老了,添加新源

echo "deb http://files.freeswitch.org/repo/deb/debian/ jessie main" > /etc/apt/sources.list.d/freeswitch.list
wget -O - http://files.freeswitch.org/repo/deb/debian/key.gpg |apt-key add -

echo "deb http://files.freeswitch.org/repo/deb/freeswitch-1.6/ jessie main" > /etc/apt/sources.list.d/freeswitch.list

下载源码

git clone https://freeswitch.org/stash/scm/fs/freeswitch.git
git clone -b v1.6 https://freeswitch.org/stash/scm/fs/freeswitch.git 1.6

安装编译需要的东西

sudo apt-get install yasm autoconf libtool-bin libghc-zlib-dev libjpeg-dev pkg-config libsqlite3-dev libcurl4-openssl-dev libpcre++-dev libspeex-dev libspeexdsp-dev libldns-dev libedit-dev libyuv-dev libvpx2-dev

安装需要的库

cd $FREESWITCH/libs

编译安装libyuv

git clone https://freeswitch.org/stash/scm/sd/libyuv.git
cd libyuv
make -f linux.mk CXXFLAGS="-fPIC -O2 -fomit-frame-pointer -Iinclude/"
make install

编译安装VPX

git clone https://freeswitch.org/stash/scm/sd/libvpx.git
cd libvpx
./configure --enable-pic --disable-static --enable-shared
make
make install

编译freeswitch

./bootstrap./configure --prefix=/home/`whoami`/fs/freeswitch-bin
make
make install
时间: 2024-12-31 03:50:56

freeswitch编译的相关文章

FreeSWITCH编译Windows版本

下载FreeSWITCH官网推荐的1.2.23版本源代码,里面自带VS2012项目方案文件,经过反复尝试,现在找到了一点小技巧. 因为编译的时候要从官网下载很多依赖库文件,所以编译要按照一定的顺序进行.生成顺序如下: 1._Downloads 2.Codecs 3.Dialplans 4.Directions 5.Endpoints 6.Event Handlers 7.Formats 8.Languages 9.Loggers 10.say 11.Sound Files 12.XML Inte

64位FreeSWITCH编译安装(版本1.4.20)

1.安装64位的CentOS6.5操作系统(勾选的服务器版本安装). 2.下载FreeSWITCH安装包以及关联的lib库.下载地址http://files.freeswitch.org/downloads/. 3.此次安装的FreeSWITCH版本为1.4.20. 4.执行./devel-bootstrap.sh. 5.根据错误信息依次安装关联的依赖库(挂载系统安装盘(mount /dev/cdrom /media)通过配置进行本地yum安装): ①gcc ②gcc-c++ ③zlib-dev

freeswitch 编译

2019年3月12日 前面三个月一直在研究webrtc源码,也算小有成效吧.但是当客户端处理完成之后发现,很多应用场景还是需要MCU对视频进行处理,所以从上周开始研究带MCU相关的服务器.目前阶段在研究freeswitch源码.本文主要介绍一下freeswitch的编译过程. 一. 下载freeswitch代码 官方地址为 https://freeswitch.org/stash/scm/fs/freeswitch.git 使用 git clone https://freeswitch.org/

FreeSwitch SIP(1):linux下编译安装v1.4

本文,原文连接: http://blog.csdn.net/freewebsys/article/details/46546205 ,转载请注明出处! 1,关于FreeSwitch FreeSWITCH 是一个电话的软交换解决方案,包括一个软电话和软交换机用以提供语音和聊天的产品驱动.FreeSWITCH 可以用作交换机引擎.PBX.多媒体网关以及多媒体服务器等. FreeSWITCH 支持多种通讯技术标准,包括 SIP, H.323, IAX2 以及 GoogleTalk ,可以方便的与其他开

windows下编译FreeSwitch

FreeSWITCH的是一个跨平台的开源电话交换平台 windows版本:win7 64位的操作系统 [下载] 我下载的是release版本,下载的文件是freeswitch-1.4.20.zip,下载的地址是: http://files.freeswitch.org/freeswitch-releases/ 解压后的目录结构如下: [编译] 1,执行批处理文件:Freeswitch.2008.sln.release.bat,提示: VS2008及以前的支持已经不再更新了,因此不推荐使用.VS2

freeswitch源码编译 ./configure 遇到的问题

从FreeSWITCH 安装过程./configure 时遇到sqlite 的问题开始: checking for sqlite3 >= 3.6.20… Package sqlite3 was not found in the pkg-config search path. Perhaps you should add the directory containing `sqlite3.pc’ to the PKG_CONFIG_PATH environment variable No pack

CentOS 7下编译FreeSWITCH 1.6

安装背景: 已经最小化安装CentOS 7. 准备工作: 挂载安装光盘,配置yum本地化安装,配置方法可以参考http://www.cnblogs.com/yoyotl/p/4877439.html. ① 安装net-tools 执行yum install net-tools进行安装. Net-tools 包含一系列程序,构成了 Linux 网络的基础. 包含arp, dnsdomainname, domainname, hostname, ifconfig, nameif, netstat,

freeSWITCH 视频通话

一,freeSWITCH安装 本实验基于CentOS 6 源码编译安装FreeSWITCH,详细安装过程见下: http://990487026.blog.51cto.com/10133282/1921010 二,配置FreeSWITCH,加载H26x模块 1,FreeSWITCH先处于关闭状态. 2,修改配置文件: [[email protected] ~]# vim ~/freeswitch/etc/freeswitch/vars.xml 将:   <X-PRE-PROCESS cmd=&quo

freeswitch嵌入python脚本

操作系统:debian8.5_x64 freeswitch 版本 : 1.6.8 python版本:2.7.9 开启python模块 安装python lib库 apt-get install python-dev 编辑modules.conf,开启python模块: languages/mod_python 编译安装: ./configure && make && make install 在modules.conf.xml中开启python支持: 启动freeswitc