环境准备
yum installgcc gcc-c++ automake pcre pcre-devel zlip zlib-devel opensslopenssl-devel
依赖./configure–add-module=../nginx-rtmp-module-master
配置编译 配置结果make && make install
编译启动||停止服务
启动||停止更改nginx端口为8080
注意防火墙设置
关闭防火墙设置nat
NAT80-8080启动nginx 服务并访问
启动服务 nginx点播
两个MP4文件,放在/opt/vide/vod下;
一个是test.mp4,由wmv转换过来;
一个是1080P.mp4,从网上现在下来的;
具体信息如下:
MP4然后修改nginx配置文件:
Vi/usr/local/nginx/conf/nginx/conf/nginx.conf
rtmp设置NAT
NAT80-80使用vlc播放器播放:rtmp://127.0.0.1/vod/1080P.mp4
vlc playerrtmp://127.0.0.1/vod/test.mp4
no imagewhy?
因是通过格式工厂将wmv文件强制转换成MP4格式的,故更换,以手机的摄像机拍摄的视频为准,v8.mp4 12.6MB大小。
rtmp://127.0.0.1/vod/V8.mp4
MP4可以播放,看来原因就是播放文件本身格式的问题。
局域网可访问设置
本机IP 192.168.2.251
ipconfig NAT ok直播
live conf stat conf重启服务;使用火狐查看http://127.0.0.1/stat
firefox为排除浏览器差异问题,使用谷歌查看发现:
chrome403问题多数是nginx配置的原因,查看nginx.conf文件
root添加root用户;再次火狐查看:
firefox谷歌查看:
chrome至此,说明配置成功。
fmpeg
下载ffmpeg:http://ffmpeg.org/releases
解压FFMPEG===tar-jxvf
安装yasm----yum install yasm
yasm考虑到需要太多的依赖,故直接走yum;
安装EPEL Release,因为安装需要使用其他的repo源,所以需要EPEL支持
yum install -y epel-release
如果出现缺少Code提示,可以:
rpm –import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-7
安装nux-dextop 源
rpm-Uvhhttp://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-1.el7.nux.noarch.rpm
查看repo源是否安装成功
yum repolist
安装ffmpeg
yum install -y ffmpeg
yum install ffmpegFfmpeg -version
version推流
ffmpeg -re -i V8.mp4 -vcodec libx264-acodec aac -ar 44100 -strict -2 -ac 1-f flv rtmp://127.0.0.1:1935/hls/test1
1 2 3VLC播放:
rtmp://127.0.0.1:1935/live/djw
live
网友评论