RTMP (Real-Time Messaging Protocol) 是 Adobe 开发的实时消息传输协议,常用于直播流媒体。Nginx 可以通过 RTMP 模块来实现流媒体服务器功能。
# 下载 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
sudo apt-get install libnginx-mod-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;
}
}
}
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;
}
application dash {
live on;
dash on;
dash_path /tmp/dash;
dash_fragment 5s;
dash_playlist_length 30s;
}
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;
}
application secured {
live on;
# IP 访问限制
allow publish 192.168.1.0/24;
deny publish all;
# 推流认证
on_publish http://yourserver.com/auth;
}
在 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/;
}
}
sudo nginx
# 或重新加载配置
sudo nginx -s reload
ffmpeg -re -i input.mp4 -c:v libx264 -preset veryfast -c:a aac -f flv rtmp://yourserver/live/streamkey
ffplay rtmp://yourserver/live/streamkey
# 或访问 HLS 流
ffplay http://yourserver/hls/streamkey.m3u8
通过以上配置,你可以搭建一个功能完善的 RTMP 流媒体服务器,支持直播、点播、转码和多种流格式输出。