ubuntu20.04 rtmp搭建
时间: 2023-10-26 21:05:47 浏览: 543
要在 Ubuntu 20.04 上搭建 RTMP 服务器,可以安装 Nginx 和 Nginx-RTMP 模块。具体步骤如下:
1. 安装 Nginx 和依赖库:
```
sudo apt update
sudo apt install nginx libnginx-mod-rtmp
```
2. 配置 RTMP 模块:
编辑 `/etc/nginx/nginx.conf` 文件,在 `http` 块中添加以下代码:
```
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
}
}
}
```
3. 启动 Nginx 服务:
```
sudo systemctl start nginx
```
现在你的 RTMP 服务器已经搭建好了。你可以使用 OBS 等推流软件推流到 `rtmp://your_server_ip/live`,也可以使用 VLC 等播放软件播放 `rtmp://your_server_ip/live/stream_name`。
阅读全文