在完成了《ffmpeg音视频同步的几种策略》音视频同步后,我们的播放器项目就差不多可以正常使用了。剩下的功能比如说暂停、播放、seek等这些对于一个直播项目来说并不需要,所以我们把这些功能先延缓,后面有时间再介绍学习。
从今天开始我们将开始直播项目采集端的系列学习。所谓工欲善其事必先利其器,今天我们就在先搭建好我们的流媒体服务器。
今天我们使用的是linux系统为Centos 64位服务器。
下载安装nginx
首先新建nginx目录存放nginx:
mkdir nginx
然后进入nginx目录分别下载nginx及nginx-rtmp-module:
进入nginx目录cd nginx下载nginxwget http://nginx.org/download/nginx-1.17.9.tar.gz下载nginx-rtmp-modulehttps://codeload.github.com/arut/nginx-rtmp-module/tar.gz/v1.2.1
解压
// 解压 nginxtar xvf nginx-1.17.9.tar.gz// 解压nginx-rtmp-moduletar xvf v1.2.1
编译nginx
// 进入nginx下载目录cd nginx-1.17.9#执行configure生成makefile文件 --add-module 指向rtmp模块目录./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1
发现报错了:
./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by using --without-http_rewrite_moduleoption, or install the PCRE library into the system, or build the PCRE librarystatically from the source with nginx by using --with-pcre=<path> option.
这是因为没有安装pcre导致的,我们使用yum
包管理器安装一下pcre:
yum -y install pcre-devel
安装成功之后再执行./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1
试下,发现还是报错:
./configure: error: SSL modules require the OpenSSL library.You can either do not enable the modules, or install the OpenSSL libraryinto the system, or build the OpenSSL library statically from the sourcewith nginx by using --with-openssl=<path> option.
这是因为缺少了openssl,我们安装OpenSSL:
yum -y install openssl openssl-devel
安装成功之后再执行./configure --prefix=./bin --add-module=../nginx-rtmp-module-1.2.1
试下,成功了。
接着运行make install
安装即可。
配置nginx
首先进入安装好的配置目录:
cd bin/conf
然后执行vim nginx.conf
修改nginx.conf文件为:
user root;worker_processes 1;error_log logs/error.log debug;events { worker_connections 1024;}rtmp { server { #注意端口占用 listen 1935; application myapp { live on; #丢弃闲置5s的连接 drop_idle_publisher 5s; } }}http { server { #注意端口占用 listen 8081; location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { #注意目录 root /root/nginx/nginx-rtmp-module-1.2.1/; } location /control { rtmp_control all; } location /rtmp-publisher { #注意目录 root /root/nginx/nginx-rtmp-module-1.2.1/test; } location / { #注意目录 root /root/nginx/nginx-rtmp-module-1.2.1/test/www; } }}
启动与停止
启动nginx服务器:
bin/sbin/nginx
启动服务器后在浏览器输入你服务器的ip:端口
如果可以访问则说明配置成功了。
停止nginx服务器:
bin/sbin/nginx -s stop
使用ffmpeg测试推流与拉流
如果你还不知道如何安装ffmpeg命令行环境,建议你参考这篇文章《手把手教你搭建ffmpeg命令行运行环境》
执行推流命令:
ffmpeg -re -i 需要推流的视频文件 -vcodec libx264 -acodec aac -f flv rtmp://服务器ip:1935/myapp/videopushTest
推流成功后,我们使用ffplay命令测试能否播放:
ffplay rtmp://服务器ip:1935/myapp/videopushTest
如果能正常播放,说明我们的流媒体服务器就搭建成功啦。
最后如果你对音视频开发感兴趣可扫码关注
本文分享自微信公众号 - 思想觉悟(ChuanFlyer)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。