Resource usage #158
-
If I run this on an Ubuntu Server platform as a service, what sort of CPU and memory resources get consumed? Can a RPI4 support running this? What sort of frame delay does this add to the stream? I am hoping to run this on the same 18.04 server as the NVR software, so hopefully a loopback adapter can be used to bridge the two. If this is not possible, is it safe to assume the network bandwidth is basically equal to the stream from the camera? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
so I run this on my own rpi3 so a 4 should be fine. The resources on the ram and CPU are not much but I don't have exact numbers on hand. All we are doing is pulling frames from the camera filtering out the packets the camera gives us into audio and video and then passing the video to gstreamer for it to serve as rtsp. We do however do some processing on the audio because some of the cameras use an old audio format that is not supported for use over rtsp. The major requirment is bandwidth. Don't forget that you are going to be both receiving and sending a HD stream at once so it will probably be double what you expect. There also seems to be a limit to how many open connections neolink can handle at once which tends to be about 5-6 HD streams at once. I think at this point there is so much traffic coming into the port that it has trouble receiving it all at once. Hope that is helpful. |
Beta Was this translation helpful? Give feedback.
so I run this on my own rpi3 so a 4 should be fine. The resources on the ram and CPU are not much but I don't have exact numbers on hand.
All we are doing is pulling frames from the camera filtering out the packets the camera gives us into audio and video and then passing the video to gstreamer for it to serve as rtsp.
We do however do some processing on the audio because some of the cameras use an old audio format that is not supported for use over rtsp.
The major requirment is bandwidth. Don't forget that you are going to be both receiving and sending a HD stream at once so it will probably be double what you expect.
There also seems to be a limit to how many open connections neolink ca…