windows nginx-rtmp-module 下载
时间: 2023-09-30 21:09:31 浏览: 243
你可以到 nginx-rtmp-module 的官方 Github 页面上下载 Windows 版本的 nginx-rtmp-module。具体步骤如下:
1. 访问 https://github.com/arut/nginx-rtmp-module/releases。
2. 找到最新版本的 Windows 下载链接,例如 `nginx-rtmp-win32-1.19.10.zip`。
3. 点击链接下载压缩包。
4. 解压缩包到你想要的目录。例如 `C:\nginx-rtmp`。
5. 下载最新的 nginx Windows 版本。可以从 https://nginx.org/en/download.html 获取。
6. 解压 nginx 压缩包到 `C:\nginx`。
7. 在 `C:\nginx` 目录下创建一个名为 `conf` 的目录。
8. 将 `C:\nginx-rtmp\conf\nginx.conf` 复制到 `C:\nginx\conf`。
9. 打开 `C:\nginx\conf\nginx.conf`,在 `http` 模块中添加以下指令:
```
rtmp {
server {
listen 1935;
application live {
live on;
}
}
}
```
10. 启动 nginx:打开命令提示符,进入 `C:\nginx` 目录,执行 `start nginx`。
11. 验证是否启动成功:在浏览器中访问 `http://localhost:80/`,如果出现欢迎页面,则说明 nginx 启动成功。
12. 推流和播放:使用支持 rtmp 的推流工具或播放器,推流到 `rtmp://localhost/live/stream_name` 或播放 `rtmp://localhost/live/stream_name`。其中 `stream_name` 为你自己定义的流名。
阅读全文