NGINX-RTMP-Module:无法录制

时间:2015-08-23 14:54:05

标签: nginx rtmp

我想制作当前流的缩略图。根据{{​​3}}帖子,可以使用记录块。

不幸的是,我不能让它发挥作用。什么都没发生。检查error.log也没有。 我也尝试在flv中记录,但问题和以前一样。

下面是我的nginx.conf

注意:rtmp流是实时的(不知道是否有所不同)

注2:我使用了sudo mkdir / usr / local / nginx / var / rec

rtmp {
        server {
                listen 1935;
                chunk_size 4096;

                application live {
                    live on;
                    recorder preview {
                        record keyframes;
                        record_max_frames 4;
                        record_path /var/rec;
                        record_interval 30s;

                        exec_record_done ffmpeg -i rtmp://localhost:7000/live/$name -vcodec png -vframes 1 -an -f rawvideo -s 320x240 -ss 00:00:01 -y /var/rec/test.png;
                    }


            }
        }
}

1 个答案:

答案 0 :(得分:0)

我认为你错过了行record all