搭建nginx服务器工具: nginx下载地址:https://nginx.org/download/nginx-1.13.6.zipnginx-rtmp-module-master.zip下载地址:https://github.com/arut/nginx-rtmp-module/ 使用方法: 将两个工具文件解压,然后将这个nginx-rtmp-module-master放到nginx解压文件的一级目录底下 ...
3. 配置文件nginx-rtmp-module4. 推流文件ffmpeg 5. 拉流工具vlc 步骤: 一,下载好nginx视频版,解压,在nginx 1.7.11.3 Gryphon目录下新建三个文件夹: m3u8File rec vod 二,将nginx-rtmp-module 下载好丢进去(上图有) 三,在conf目录下,新建一个文件“nginx.conf” worker_processes 1; #Nginx进程数,建议设置...
建立一个rtmp server目录,将下面的资源下载到该目录。 2.1 nginx 1.7.11.3Gryphon.zip下载地址:http://nginx-win.ecsds.eu/download/ 2.2nginx-rtmp-module-master.zip下载地址:https://github.com/arut/nginx-rtmp-module/ 2.3 OBS(Open Broadcaster Software) 下载地址:Open Broadcaster Software | OBS 2.4 VLC...
(2)编译安装nginx,并指定上面下载的rtmp模块路径,执行命令: ./configure --add-module=../nginx-rtmp-module-master --with-http_ssl_module --with-http_ssl_module --with-http_xslt_module --with-http_flv_module --with-debug --with-http_gzip_static_module 执行成功如下图所示: 6、运行cd conf,...
二,安装包含 nginx-rtmp-module模块的nginx 2.1,下载并解压nginx 到nginx.org下载稳定版本的nginx-1.8.1.tar.gz, 然后拷贝到/usr/local/RTMP tar -zxvf nginx-1.8.1.tar.gz 2.2,下载 nginx-rtmp-module 到https://github.com/arut/nginx-rtmp-module下载:nginx-rtmp-module.1.1.4.tar.gz 然后拷贝到/usr/...
nginx-rtmp+modul:https://github.com/arut/nginx-rtmp-module下载的是源码 nginx-rtmp-module-master.zip cd /usr/local/nginx 上传文件到该目录 解压文件 tar -zxvf nginx-1.5.0.tar.gz unzip nginx-rtmp-module-master.zip 系统需要安装 yum -y install gcc-c++ ...
nginx-rtmp-module的github下载地址 https://github.com/arut/nginx-rtmp-module 2)安装支持rtmp和hls的nginx 例如在Linux中把nginx放在目录/nginx_files并解压,解压后的目录是/nginx_files/nginx-1.14.0。把nginx-rtmp-module的源码放在目录/nginx_files/nginx-rtmp-module-master中。进入目录/nginx_files/nginx...
1.nignx及nginx-rtmp模块的安装 nginx-rtmp的下载,直接下源码解压就ok了,我放在这里/home/dev/pengqiuyuan/nginx-rtmp-module-master https://github.com/arut/nginx-rtmp-module 在编译nginx的时候添加nginx-rtmp模块的路径 ./configure --add-module=/home/dev/pengqiuyuan/nginx-rtmp-module-master --with-http...
RTMP流媒体服务器,现成的开源方案有很多,有SRS,Red5,wowoza,FMS等,我这里使用的是Nginx的rtmp插件实现实时流转发。 下载nginx-rtmp-modulehttps://github.com/arut/nginx-rtmp-module 重新编译nginx --prefix=/opt/nginx --with-stream --with-http_ssl_module --with-stream_ssl_module --with-debug --add...
root /usr/local/src/nginx-rtmp-module-master/; } location /live { #这里也是需要添加的字段。 types { application/vnd.apple.mpegurl m3u8; video/mp2t ts; } alias /opt/video/hls; #第五步创建的目录 expires -1; add_header Cache-Control no-cache; ...