I would like to start off by first saying that I am not a web developer so I apologize if I explain thing poorly.
I am working on a simple in house digital signage solution. We create the show in power point, then save it as a video. We then loop that video on a webpage.
<video autoplay loop muted id="video-bg" preload = "auto"
style="position: fixed; left: 0; bottom: 0; width: 80%;
height: auto; z-index: -100;">
<source src="./test.mp4"
type="video/mp4">
</video>
This is the code used to play the video, extremely basic but it is all we needed.
To update the show we simply overwrite the existing video and when the page auto refreshes the new video is played. This works when the site is being displayed in Chrome. In IE we can not save the file as we receive an error it is in use.
Using process explorer I see that the file is in use by IE but not Chrome.
Is there a difference in how Chrome and IE use a file?
Thanks in advanced to anyone who can help narrow down this problem.