I have a web application with ASP.NET MVC.
On my page, I can add RTSP streaming URLs to the database, for example
RTSP: //xx.xxx.x.xxx: xxx / MediaInput / h 264
I need to display a live video stream on a web page. VLC and QuickTime plugins are no longer supported - so how can I convert this stream URL to HTML5 video or something similar that all browsers can view?
Note. I cannot use third-party streamers for IP cameras because they require you to manually configure the URL. On my page, cams are added at runtime, so I need to programmatically export live video.
source
share