0

I've several IP cameras with Rtsp protocol with H264 encoded, I want to Nginx-RTMP publish the streamings to web, anyone has some ideas? Thank you in advance.

PGKLIC
  • 73
  • 3
  • 10

1 Answers1

1

You should try to use FFmpeg with the following command :

ffmpeg -re -i rtsp://<camera url> -c copy -f flv rtmp://<nginx host>/app/stream

You could also use MonaServer which doesn't need to be configured (if you just want to publish/play) and allows you to publish streams using RTMFP.

thomas
  • 526
  • 3
  • 10