使用nginx的nginx-rtmp-module出hls流时master_process off后,hls里的ts文件不会被删除!
nginx-rtmp-module
nginx-rtmp-module: nginx-rtmp-module 是一个 Nginx 模块,用于支持 RTMP、HLS 和 MPEG-DASH 直播流媒体,提供录制、转码和HTTP回调等功能。
项目地址:https://gitcode.com/gh_mirrors/ng/nginx-rtmp-module
免费下载资源
·
使用nginx的nginx-rtmp-module出hls流时master_process off后,hls里的ts文件不会被删除!
即使配置了hls_cleanup on也是没有效果的
记录一下,这个是它的bug吗
GitHub 加速计划 / ng / nginx-rtmp-module
13.26 K
3.5 K
下载
nginx-rtmp-module: nginx-rtmp-module 是一个 Nginx 模块,用于支持 RTMP、HLS 和 MPEG-DASH 直播流媒体,提供录制、转码和HTTP回调等功能。
最近提交(Master分支:1 个月前 )
2fb11dff
While rtmp module does not support SSL, starting from nginx 1.25.5 an SSL
connection can be passed from nginx stream pass module. Such connections
should be shut down on connection closure.
An rtmps example:
rtmp {
server {
listen 1935; # rtmp
application foo {
live on;
}
}
}
stream {
server {
listen 1936 ssl; # rtmps
ssl_certificate example.com.crt;
ssl_certificate_key example.com.key;
pass 127.0.0.1:1935;
}
}
7 个月前
6f9fa49a
The change repeats nginx commit cb149fa03367 and is needed for stream pass
module to be able to pass connections to rtmp.
7 个月前
更多推荐
已为社区贡献6条内容
所有评论(0)