Request for Server.xml Config for OME RTSP -> WebRTC Pull Stream #1910
-
|
I am trying to set up OME in Docker to dynamically stream an RTSP camera feed to a web browser using WebRTC. I am using the airensoft/ovenmediaengine:latest image. Could you please provide a basic, working Server.xml configuration file that enables the API on port 8081 and allows for an application to receive an RTSP stream? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 15 replies
-
|
To enable API, start from misc/conf_examples/Server.xml and uncomment the Managers section under line 42 (also under line 160, filling in the details of your TLS cert and CORS settings as appropriate) OME receives RTSP via a "pull provider": https://docs.ovenmediaengine.com/live-source/rtsp-pull You need to configure this with the details of the stream you want pulled. In the Server.xml template you can look around line 262 in the Origins section and use one of these entries as a guide. For example, this entry would be playable under the "app" application via stream name "stream": |
Beta Was this translation helpful? Give feedback.
The streaming is already working he…