How record thumbnail when stream start NGINX RTMP

时间:2016-07-11 21:08:39

标签: video nginx stream screenshot rtmp

we can use this :

exec_record_done ffmpeg -i /streams_video/$filename -vcodec png -vframes 1 -an -f rawvideo -s 240x120 -ss 00:00:01 -y /thumbnails/$basename.png;

this command make thumbnail, but only when recording done.

How we can make thumbnail when recording start?

1 个答案:

答案 0 :(得分:0)

我看到你已经自己回答了这个问题,但是如果你有NGINX-RTMP的任何其他问题,你可以在他们的github repo here上查看NGINX-RTMP wiki上的指令页面。 'exec'指令部分你可以看到多个不同的选项。 E.G。

  1. EXEC
  2. exec_record_done
  3. exec_publish_done
  4. exec_play(您可以在录制开始时使用)
  5. 玩得开心!