91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行FreeSwitch一些模塊的安裝

發布時間:2021-11-05 18:02:48 來源:億速云 閱讀:374 作者:柒染 欄目:建站服務器

今天就跟大家聊聊有關如何進行FreeSwitch一些模塊的安裝,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

FreeSwitch 視頻支持,需要特殊安裝一些依賴 還有安裝順序問題

這里列出來 安裝libyuv libvpx opus mod_av 等模塊的代碼 方便大家使用

環境:

CentOS 6.x 64

FreeSwitch 1.6.20

URL=file.qzlink.com

#bugfix: step1 libyuv

cd /usr/local/src/freeswitch/libs

rm -rf libyuv

wget http://$URL/freeswitch/libyuv.zip

unzip libyuv.zip

cd libyuv

make -f linux.mk CXXFLAGS="-fPIC -O2 -fomit-frame-pointer -Iinclude/"

make install

yes|cp /usr/lib/pkgconfig/libyuv.pc /usr/lib64/pkgconfig/

yes|cp /usr/lib/libyuv.so /usr/lib64/

#bugfix :step2 libvpx

cd /usr/local/src/freeswitch/libs

rm -rf libvpx

wget http://$URL/freeswitch/libvpx.zip

unzip libvpx.zip

cd libvpx

./configure --enable-pic --disable-static --enable-shared

make

make install

yes|cp /usr/local/lib/pkgconfig/vpx.pc /usr/lib64/pkgconfig/

#bugfix :step3 opus

cd /usr/local/src/freeswitch/libs

rm -rf opus

wget http://$URL/freeswitch/opus.zip

unzip opus.zip

cd opus

./autogen.sh

./configure

make

make install

yes|cp /usr/local/lib/pkgconfig/opus.pc /usr/lib64/pkgconfig

#bugfix step4 libpng

cd /usr/local/src/freeswitch/libs

rm -rf libpng

wget http://$URL/freeswitch/libpng.zip

unzip libpng.zip

cd libpng

./configure

make

make install

yes|cp /usr/local/lib/pkgconfig/libpng* /usr/lib64/pkgconfig/

#bugfix step5 mod_sndfile

cd /usr/local/src/freeswitch/libs

rm -rf libsndfile

wget http://$URL/freeswitch/libsndfile-1.0.27.tar.gz

tar zxvf  libsndfile-1.0.27.tar.gz

cd libsndfile-1.0.27

./configure   

make

make install

yes|cp /usr/local/lib/pkgconfig/sndfile.pc /usr/lib64/pkgconfig

cd ..

#step 6  install x264 (mod_av needed)

rm -rf zxvf libav-11.8.tar.gz

wget http://$URL/highswitch_v2/x264-snapshot-20170226-2245-stable.tar.bz2

tar   -jxvf  x264-snapshot-20170226-2245-stable.tar.bz2

rm -rf x264-snapshot-20170226-2245-stable.tar.bz2

cd x264-snapshot-20170226-2245-stable

./configure --enable-shared --enable-static --disable-opencl

make

make install

yes|cp /usr/local/lib/pkgconfig/x2* /usr/lib64/pkgconfig

cd ..

#否則編譯mod_av的時候 提示x264找不到

#然后把產生的.a 。so 文件 搞到系統的 /usr/lib64 目錄下

yes|p /usr/local/lib/libx*  /usr/lib64/

#step 7  mod_av

cd ..

rm -rf zxvf libav-11.8.tar.gz

wget http://$URL/highswitch_v2/libav-11.8.tar.gz

tar zxvf libav-11.8.tar.gz

rm -rf libav-11.8.tar.gz

cd libav-11.8

./configure --enable-shared --enable-libx264 --enable-gpl --extra-cflags=-fPIC

#如果沒有參數 --extra-cflags=-fPIC  可以 修改config.mak  給CPPFLAGS 加上-fPIC參數

make

make install

yes|cp /usr/local/lib/pkgconfig/*.pc /usr/lib64/pkgconfig/

yes|cp -f /usr/local/lib/* /usr/lib64/

cd ..

# live 555

rm -rf live.2017.01.26.tar.gz

wget http://$URL/highswitch_v2/live.2017.01.26.tar.gz

tar zxvf live.2017.01.26.tar.gz

rm -rf live.2017.01.26.tar.gz

cd live

./genMakefiles linux-64bit

make

make install

# vlc 

cd ..

rm   -rf vlc-2.2.4.tar.xz

wget http://$URL/highswitch_v2/vlc-2.2.4.tar.xz

tar xvf vlc-2.2.4.tar.xz

rm  -rf vlc-2.2.4.tar.xz

cd  vlc-2.2.4

sed -i 's#LIVE555_PREFIX-"/usr"#LIVE555_PREFIX-"/usr/local"#g' configure

./configure --enable-run-as-root --enable-realrtsp --disable-mad --disable-a52 --disable-jpeg --enable-live555

make

make install

yes|cp /usr/local/lib/pkgconfig/libvlc.pc /usr/lib64/pkgconfig/

# mod_shout playmp3

cd ..

rm -rf libshout-2.2.2.tar.gz

wget http://$URL/highswitch_v2/libshout-2.2.2.tar.gz

tar zxvf libshout-2.2.2.tar.gz

rm -rf libshout-2.2.2.tar.gz

cd libshout-2.2.2

./configure

make

make install

# mpg123

cd ..

rm -rf mpg123-1.23.8.tar.bz2

wget http://$URL/highswitch_v2/mpg123-1.23.8.tar.bz2

tar jxvf mpg123-1.23.8.tar.bz2

rm -rf mpg123-1.23.8.tar.bz2

cd mpg123-1.23.8

./configure

make

make install

#lame

cd ..

rm -rf lame-3.98.4.tar.gz

wget http://$URL/highswitch_v2/lame-3.98.4.tar.gz

tar zxvf lame-3.98.4.tar.gz

rm -rf lame-3.98.4.tar.gz

cd lame-3.98.4

./configure

make linux

make install

看完上述內容,你們對如何進行FreeSwitch一些模塊的安裝有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

榆中县| 五大连池市| 汝阳县| 泰安市| 乾安县| 迭部县| 泰顺县| 神农架林区| 西吉县| 观塘区| 呼和浩特市| 扎赉特旗| 南通市| 霍邱县| 霞浦县| 灵璧县| 新干县| 阿拉善右旗| 浑源县| 宁阳县| 丰镇市| 平遥县| 海林市| 兴安盟| 正安县| 上饶县| 桑日县| 屏边| 安图县| 翁源县| 苍溪县| 盐源县| 保德县| 孝义市| 长春市| 调兵山市| 拜城县| 石楼县| 乌苏市| 仁布县| 石棉县|