How to play IP Camera RTSP feed with WebRTC in Ant Media Server? #4986
-
Hey, I have an IP Camera with a built-in RTSP URL but it's not having a public IP. I want to stream it with as low latency as possible. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thank you for your question.
You can find out about Embedded SDK here. You can find reference project executable files for different architectures here. Lastly, if you want to modify and build this reference project by your self you will need SDK libraries. You can log in to antmedia.io and download the SDK libraries. I hope it helps. |
Beta Was this translation helpful? Give feedback.
Thank you for your question.
There are two ways to do this with Ant Media Server.
You can add the RTSP URL for your camera to the Ant Media Server as a stream source. You can do this as documented here or you can use this REST method by providing the source URL. With this solution, you will have video/audio data on the server side and you can record or re-stream it.
The second way is more innovative but it is applicable to the camera which has its own processors (mostly ARM) on it. In this solution, you can run the Embedded SDK software on your camera's processor. This software can capture video/audio data from the camera and feed that data to the WebRTC peer. In this case, data is se…