Most IP cameras have a way to get raw video stream. Using RTSP or RTMP
I suggest you get the steeam URI for the “camera”, which will be something like rtsp://<camera-ip>:<some-port>
or rtmp://<camera-ip>:<some-port>
. This is a common feature of IP cameras, even those that are emulated on the phone, so this is probably mentioned in the documents or can be enabled / installed in the application configuration.
If there is no documentation, you can do some research using Chrome to access the feed on the web page and open the developer tools to see the actual code for the page, the URI can be seen on the built-in player that they provide.
Once you receive it, open this stream using VLC and look at the properties (encoding, frame rate, size, etc.), and with this you can choose a compatible built-in player for your site.
Hope this helps!
/// Pablo
source share