I'm developing a web application with ASP.NET for viewing live feed from IP camera and the camera returns MJPEG video to the client side. This application need to be cross browser friendly including IE. But IE does not support MJPEG to be played using <img>
tag.
I already tried to use js library from https://github.com/clipchamp/jquery-clipchamp-mjpeg-player-plugin but stuck with CORS policy issue and I have no control on the server side of the video host.
This is the code which is working in Chrome and Firefox but doesn't seems to work in IE.
<img src="http://192.168.0.38:8601/Interface/Cameras/GetJPEGStream?Camera=02"/>
Is there any workaround to display live MJPEG video in Internet Explorer?