Hi there,
I’m trying to setup an application which should gather streams from IP Cameras and make them available via browser. Everything is deployed locally. So far I’ve the following:
- OpenVidu deployment
- .NET web application which talks to OpenVidu by means of REST API
- Browser client which should display video streams (simple HTML/CSS/Javascript page)
I understand the following logic must be implemented:
- In the .NET Application I need to create a new session, then I need to create a Connection of type “IP_CAMERA” for each stream I want to publish.
- When a browser client request the video streams, it will contact the .NET application which in turn will open for that client a connection of type “WEBRtc” and return to the browser client the token generated by OpenVidu.
- At this point the browser client should somehow be able to play the stream
I’ve the following doubts:
- In the doc there is an example browser client, but I don’t understand where I am supposed to specify the .NET application endpoint and the openvidu endpoint.
In general, a bit more documentation on the browser client part would be useful imho. - I couldn’t find any information about automatic connection teardown: is a connection tear down after a given timeout? where can I find informations about this?
Thank you for your time,
Alessandro