I have added the html 5 video tag in my web page. The video is running (locally) on an IIS server which is the hosting machine. But when I run through the domain name it's not running (outside of IIS).
Folder permission is also given, but it runs from IIS Local.
I added the mime type on the IIS server.
var video = document.getElementById('videotag');
video.src = '../Images/Videos/example.webm';
video.play();