安装操作系统Cenos
配置yum源
yum:https://developer.aliyun.com/mirror/
Nginx依赖
gcc-c++ zlib pcre openssl openssl-devel
Nginx和扩展模块
Nginx本身只是一个服务器,对流媒体并没有支持,所以我们要下载对应的模块来扩展其功能
MP4模块:
FLV模块:
直播流模块:https://github.com/adwpc/nginx-rtmp-module
FastDFS模块:https://github.com/happyfish100/fastdfs-nginx-module
FFMPEG
ffmpeg :https://ffmpeg.zeranoe.com/builds/
OBS推流
EV拉流
2. 安装环境 2.1 上传所有模块到系统中mkdir /opt/nginx
cd /opt/nginx
rz nginx-1.8.1.tar.gz
rz nginx_mod_h264_streaming-2.2.7.tar.gz
rz yamdi-1.9.tar.gz
rz nginx-rtmp-module-master.zip
tar -zxvf yamdi-1.9.tar.gz
cd yamdi
./configure
mark && make install
tar -zxvf nginx_mod_h264_streaming-2.2.7.tar.gz
处理一个bug
cd /opt/nginx/nginx_mod_h264_streaming/src
注释157行-161行
tar -zxvf nginx-1.8.1.tar.gz
tar -zxvf nginx_mod_h264_streaming.tar.gz
unzip nginx-rtmp-module-master.zip
./configure --add-module=../nginx_mod_h264_streaming --add-module=../nginx-rtmp-module-master --with-http_ssl_module --prefix=http://www.likecs.com/opt/software/nginx --with-http_flv_module --with-http_stub_status_module
注:如果编译报错, vim objs/Makefile (修改objs/Makefile文件, 去掉其中的"-Werror"), 然后就能够正常编译了.
cd /opt/software/nginx/conf
vim nginx.conf
添加对FLV和MP4的支持
location ~ \.flv { flv; } location ~ \.mp4$ { mp4; } 2.7 FFMPEG上传
rz ffmpeg-4.2.2.tar.bz2
安装
yum install bzip2 #因为后缀是bz2的 要安装 bzip2
tar -jxvf ffmpeg-4.2.2.tar.bz2 #使用 -jxvf 解压bz2文件
cd ffmpeg-4.2.2 #进入目录
./configure --prefix=http://www.likecs.com/opt/software/ffmpeg #配置 设置安装路径
make && make install #安装
上传测试MP4
cd /opt/software/nginx/html
rz test.mp4
查看
cd /opt/software/nginx/conf
vim nginx.conf
mkdir /opt/software/nginx/html/hls
4.2 直播推流设置场景
场景增加视频捕获设备,显示器捕获或窗口捕获
注:窗口黑屏解决方案
设备管理器中-->显示适配器-->独立显卡-禁用
设置推流地址
rtmp服务器:rtmp://192.168.3.9:1935/hls/
密钥:12345
借用EV播放
输入拉流地址
rtmp地址:rtmp://192.168.3.9:1935/hls/12345
点击开始观看直播