Linux/CentOS安装ZLMediaKit流媒体服务

Posted Stevy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux/CentOS安装ZLMediaKit流媒体服务相关的知识,希望对你有一定的参考价值。

一、centos linux下安装ffmpeg

1、下载解压

wget http://www.ffmpeg.org/releases/ffmpeg-3.1.tar.gz
tar -zxvf ffmpeg-3.1.tar.gz

2、 进入解压后目录,输入如下命令/usr/local/ffmpeg为自己指定的安装目录

cd ffmpeg-3.1
./configure --prefix=/usr/local/ffmpeg
make && make install

3、配置变量
vi /etc/profile
在最后PATH添加环境变量:
export PATH=$PATH:/usr/local/ffmpeg/bin
保存退出
查看是否生效
source /ect/profile 或者 . /etc/profile 设置生效
4、查看版本
ffmpeg -version 查看版本

注意:

若安装过程中出现以下错误:

yasm/nasm not found or too old. Use –disable-yasm for a crippled build.

If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
Include the log file “config.log” produced by configure as this will help
solve the problem.

需要安装 yasm

wget http://www.tortall.net/projects/yasm/releases/yasm-1.3.0.tar.gz
tar -zxvf yasm-1.3.0.tar.gz
cd yasm-1.3.0
./configure
make && make install
sudo yum -y install gcc
sudo yum -y install gcc-c++
gcc -v
sudo apt-get install cmake
cmake -version
或者
wget https://cmake.org/files/v3.7/cmake-3.7.2.tar.gz
tar -zxvf cmake-3.7.2.tar.gz
cd cmake-3.7.2/
./bootstrap       //此步可能遇到问题,见下文
gmake             //此步需要很长时间
gmake install
yum install openssl-devel
yum install SDL-devel
#国内用户推荐从同步镜像网站gitee下载 
git clone --depth 1 https://gitee.com/xia-chu/ZLMediaKit
cd ZLMediaKit
#千万不要忘记执行这句命令
git submodule update --init
cd ZLMediaKit
mkdir build
cd build
#macOS下可能需要这样指定openss路径:cmake .. -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2j/
cmake ..
make -j4

参考:
https://github.com/xia-chu/ZL...
https://www.cnblogs.com/zt199...
https://blog.csdn.net/jklinux...

以上是关于Linux/CentOS安装ZLMediaKit流媒体服务的主要内容,如果未能解决你的问题,请参考以下文章

ZLMediaKit编译与webrtc推拉流测试

metaRTC实现ZLMediaKit流媒体服务器webrtc推拉流

技术分享| WVP+ZLMediaKit实现摄像头GB28181推流播放

技术分享| WVP+ZLMediaKit实现摄像头GB28181推流播放

ZLMediaKit视频推流和播放步骤

2019-10-09 zlmediakit主要代码流程整理