Windows下nginx-http-flv-module服务部署

音视频应用开发系列文章目录

1.新建文件夹nginx-rtmp

2.将《Windows下nginx-http-flv-module编译》生成的nginx.exe拷贝到nginx-rtmp目录下

3.将nginx源码目录下的conf文件夹拷贝到nginx-rtmp目录下

4.将nginx源码目录下的docs/html文件夹拷贝到nginx-rtmp目录下

5.在nginx-rtmp目录下新建logs和temp文件夹

6.将nginx-http-flv-module目录下的stat.xsl拷贝到nginx-rtmp/html目录下

7.配置conf/nginx.conf文件

worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#error_log  logs/error.log  debug;

#pid        logs/nginx.pid;

events {
    worker_connections  1024;
}

# 添加RTMP服务
rtmp {
    server {
        listen 1935; # 监听端口

        chunk_size 4000;
        application live {
            live on;
			gop_cache on;
        }
    }
}

# HTTP服务
http {
    include       mime.types;
    default_type  application/octet-stream;

    #access_log  logs/access.log  main;

    server {
        listen       8080; # 监听端口
 
		location /stat.xsl {
            root html;
        }
		location /stat {
            rtmp_stat all;
            rtmp_stat_stylesheet stat.xsl;
        }
		location / {
            root html;
        }
    }
}

8.整个服务部署文件构架如下

nginx-rtmp
│  nginx.exe
│  
├─conf
│      fastcgi.conf
│      fastcgi_params
│      koi-utf
│      koi-win
│      mime.types
│      nginx.conf
│      scgi_params
│      uwsgi_params
│      win-utf
│      
├─html
│      50x.html
│      index.html
│      stat.xsl
│      
├─logs
│      access.log
│      error.log
│      
└─temp
    ├─client_body_temp
    ├─fastcgi_temp
    ├─proxy_temp
    ├─scgi_temp
    └─uwsgi_temp

9.启动nginx

a.进入nginx-rtmp目录下双击nginx.exe

b.WIN+R->cmd命令行进入nginx-rtmp目录下执行 start /b nginx.exe -c conf\nginx.conf

10.使用ffmpeg推流,VLC拉流

11.网页打开http://your_ip:8080/stat可以看到nginx媒体流的状态

12.关闭nginx

WIN+R->cmd命令行进入nginx-rtmp目录下执行 nginx.exe –s stop

13.下载本文部署好的戳这里

要在Windows部署nginx-http-flv-module,您需要按照以下步骤进行操作: 1. 首先,确保您的Windows系统已经安装了相应的编译环境,如CMake、MinGW等。您可以通过官方网站下载并安装这些软件。 2. 下载最新的nginx源代码,并解压到一个您方便操作的路径。 3. 下载nginx-http-flv-module源代码,解压到和nginx源代码相同的目录下。 4. 打开一个命令行终端,进入到nginx源代码的目录下。 5. 运行以下命令进行配置和编译:./configure --with-http_flv_module --with-http_ssl_module --with-cc=cl --builddir=objs --prefix=YOUR_INSTALL_PATH 其中,--with-http_flv_module用于指定启用http-flv模块,--with-http_ssl_module用于启用SSL模块,--with-cc=cl用于指定编译器为Microsoft Visual C++,--prefix=YOUR_INSTALL_PATH用于指定安装路径。 6. 运行make命令,进行编译。 7. 编译完成后,运行make install进行安装。安装完成后,您可以在YOUR_INSTALL_PATH目录下找到已安装的nginx。 8. 进入到已安装的nginx目录,找到conf/nginx.conf文件,并用文本编辑器打开。 9. 在http中添加如下配置: ``` flv { server { listen 8080; flv_live on; } } ``` 这样设置将启用flv模块,并在8080端口上监听请求。 10. 保存并关闭nginx.conf文件。 11. 运行nginx.exe启动nginx服务。 您现在已经成功部署nginx-http-flv-module。您可以在浏览器中通过http://localhost:8080访问您的http-flv。记得根据您的实际需求来进行配置和调整。
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值