rtmp Nginx使用控制端点进行记录?

时间:2017-08-24 21:22:55

标签: nginx rtmp

我使用rtmp module编译了nginx。我启动nginx并运行以下内容开始流式传输我的网络摄像头:

ffmpeg -i /dev/video0 -f flv rtmp://localhost/live/test                                                                                               

然后我尝试使用control module开始录制:

curl "http://localhost:8080/control/record/start?app=application&name=test&rec=rec1"

但录音事件似乎没有触发。

以下是我的nginx.conf文件的简化版本:

rtmp {                                                                    
  server {                                                                
  # ... more code here                                                    
    recorder rec1 {                                                       
      record all manual;                                                  
      record_suffix all.flv;                                              
      record_path /tmp/rec;                                               
      record_unique on;                                                   
    }                                                                     
  }                                                                       
}                                                                         

http {                                                                    
  server {                                                                
    listen 8080;                                                          
    server_name localhost;                                                
    location /control {                                                   
      rtmp_control all;                                                   
    }                                                                     
  }                                                                       
  # ... more code here                                                    
}  

注意:已检查端口8080和1935是否已使用nmap打开。

注意/更新:

我注意到,如果我将app=更改为live,我会收到一条实际的错误消息:

<html>
<head><title>500 Internal Server Error</title></head>
<body bgcolor="white">
<center><h1>500 Internal Server Error</h1></center>
<hr><center>nginx/1.11.1</center>
</body>
</html>

与具有实际应用名称的命令相反,该命令不返回任何内容。这告诉我它在某种程度上有效,但我仍然没有结束重新编码。

我也试图将name=test切换为name=live,但不会导致错误回复。

Complete nginx.conf file.

更新#2:

我在使用上面的/var/log/nginx/error.log命令时正在看curl。每次我使用它时都会记录以下内容:

client 127.0.0.1 closed keepalive connection

1 个答案:

答案 0 :(得分:1)

我忙着解决这个问题。这个问题有两个问题。

  1. 应用程序不是我的应用程序名称,它是live
  2. rec1块不在实时应用程序块中,它是一个不相关的hls代码块。