What I want to do
I want to have a security camera system implemented in Rust. My program should be able to read from multiple RTSP URIs and perform machine learning on the stream to detect faces, license plates, etc.
My questions
First off, I have no knowledge of RTSP, RTP, nor any form of media format or how to consume them. I've been trying to read about them to learn but I haven't made much progress.
- What would be some good crates to look at to read from an RTSP stream? I've mostly been looking at
gstreamer-rtsp
,gstreamer-rtp
,ffmpeg
andffmpeg-next
. - Are there any good examples on GitHub or some blog post that show how to read data from an RTSP stream?
I saw that there were other posts about this but I never saw anything that fully answered my question.