插件窝 干货文章 nginx如何配置rtmp

nginx如何配置rtmp

Nginx RTMP HLS application 597    来源:    2025-04-05

Nginx RTMP 模块配置指南

RTMP (Real-Time Messaging Protocol) 是 Adobe 开发的实时消息传输协议,常用于直播流媒体。Nginx 可以通过 RTMP 模块来实现流媒体服务器功能。

安装 RTMP 模块

1. 编译安装带 RTMP 模块的 Nginx

# 下载 Nginx 和 RTMP 模块源码
wget http://nginx.org/download/nginx-1.25.3.tar.gz
wget https://github.com/arut/nginx-rtmp-module/archive/refs/tags/v1.2.2.tar.gz

# 解压
tar -zxvf nginx-1.25.3.tar.gz
tar -zxvf v1.2.2.tar.gz

# 编译安装
cd nginx-1.25.3
./configure --add-module=../nginx-rtmp-module-1.2.2
make
sudo make install

2. 使用预编译包 (Ubuntu/Debian)

sudo apt-get install libnginx-mod-rtmp

基本 RTMP 配置

编辑 Nginx 配置文件 (通常位于 /usr/local/nginx/conf/nginx.conf/etc/nginx/nginx.conf):

rtmp {
    server {
        listen 1935;  # RTMP 默认端口
        chunk_size 4096;

        application live {
            live on;
            record off;

            # 推流认证
            # on_publish http://localhost/auth;

            # HLS 支持
            # hls on;
            # hls_path /tmp/hls;
            # hls_fragment 3;
            # hls_playlist_length 60;
        }

        # 另一个应用示例
        application vod {
            play /var/flvs;
        }
    }
}

高级配置选项

1. HLS 支持

application live {
    live on;
    hls on;
    hls_path /tmp/hls;
    hls_fragment 5s;
    hls_playlist_length 30s;

    # 只有发布者可以访问
    # allow publish 127.0.0.1;
    # deny publish all;
}

2. DASH 支持

application dash {
    live on;
    dash on;
    dash_path /tmp/dash;
    dash_fragment 5s;
    dash_playlist_length 30s;
}

3. 转码和转推

application live {
    live on;

    # 转推到其他 RTMP 服务器
    push rtmp://another-server/live;

    # 执行 FFmpeg 转码
    exec ffmpeg -i rtmp://localhost/live/$name
              -c:a libfdk_aac -b:a 128k -c:v libx264 -b:v 2500k -f flv -g 30 -r 30 -s 1280x720 -preset superfast -profile:v baseline rtmp://localhost/hls/$name_720p
              -c:a libfdk_aac -b:a 64k -c:v libx264 -b:v 1000k -f flv -g 30 -r 30 -s 854x480 -preset superfast -profile:v baseline rtmp://localhost/hls/$name_480p;
}

4. 访问控制

application secured {
    live on;

    # IP 访问限制
    allow publish 192.168.1.0/24;
    deny publish all;

    # 推流认证
    on_publish http://yourserver.com/auth;
}

HTTP 访问配置

http {} 块中添加以下内容以支持 HTTP 访问 HLS/DASH:

server {
    listen 80;

    location /hls {
        types {
            application/vnd.apple.mpegurl m3u8;
            video/mp2t ts;
        }
        root /tmp;
        add_header Cache-Control no-cache;
    }

    location /dash {
        root /tmp;
        add_header Cache-Control no-cache;
    }

    location /stat {
        rtmp_stat all;
        rtmp_stat_stylesheet stat.xsl;
    }

    location /stat.xsl {
        root /path/to/nginx-rtmp-module/;
    }
}

启动和测试

  1. 启动 Nginx:
sudo nginx
# 或重新加载配置
sudo nginx -s reload
  1. 测试推流:
ffmpeg -re -i input.mp4 -c:v libx264 -preset veryfast -c:a aac -f flv rtmp://yourserver/live/streamkey
  1. 测试播放:
ffplay rtmp://yourserver/live/streamkey
# 或访问 HLS 流
ffplay http://yourserver/hls/streamkey.m3u8

常见问题解决

  1. 端口被占用: 确保 1935 端口没有被其他程序占用
  2. 权限问题: 确保 Nginx 对 HLS/DASH 目录有写入权限
  3. 防火墙: 开放 1935 (RTMP) 和 80/443 (HLS/DASH) 端口
  4. 编码不匹配: 确保推流编码与播放器支持的编码一致

通过以上配置,你可以搭建一个功能完善的 RTMP 流媒体服务器,支持直播、点播、转码和多种流格式输出。