我正在尝试通过RTMP应用程序块内的exec_pull将RTSP流转换为RTMP。没有错误,但是当我尝试从VLC网络流访问该流时,该流不起作用。
这是github上的问题列表:https://github.com/arut/nginx-rtmp-module/issues/1353
下面是我的配置文件。
rtmp {
exec_options on;
access_log /var/log/nginx/rtmp_access.log;
server {
listen 8089;
#notify_method get;
application live {
live on;
exec_pull ffmpeg -i rtsp://10.x.x.x:8554/Stream1 -threads 2 -f flv -r 25 -s 1280x720 -an rtmp://localhost:8089/stream;
}
}
}