chpmrc / foscam_streamer

A small tool to stream Foscam IP cameras on the web
110 stars 46 forks source link

Can I open two RTSPs in this program? #8

Open allefribeiro opened 5 years ago

allefribeiro commented 5 years ago

Hello, how are you?

I have a question that is, can I open two different rtsp in this program?

kovenko commented 3 years ago

command 'ffmpeg -pix_fmt yuv420p -f mpegts -codec:v mpeg1video -s 1280x720 -b:v 1000k -bf 0 -an -r 24 -' send stream to stdout. for open more streams need output to pipes 'ffmpeg -pix_fmt yuv420p -f mpegts -codec:v mpeg1video -s 1280x720 -b:v 1000k -bf 0 -an -r 24 pipe:NN' (NN - integer number pipe). how to accept it nodejs I don't know.