Question / Help Videos using <video> tag will not loop!

I want to recreate the intro screen seen at the start of this video in OBS studio using the browser source. I currently use OBS standard.

I use an html file which contains the script:

<video autoplay nocontrols loop muted class=vid id="vid1">
<source src="http://absolute/SkylinesSnowfallReleaseTrailer.mp4" type="video/mp4">
</video>

8 times for 8 different videos.

however the video does not loop as requested. I got round this with OBS using:

<video autoplay nocontrols loop muted class=vid id="vid1">
<source src="file://C:\Trailers\SkylinesSnowfallReleaseTrailer.mp4" type="video/mp4">
</video>

but this won't work with OBS Studio.

Osiris suggested placing the videos in the same folder as the HTML file and omitting the http://absolute/ which seems to work, however only the first 6 videos listed load. The last 2 are blank AND they are still not looping for me.
 
Last edited:
OK so a separate problem now: only the first 6 videos open, 7 and 8 will not. If I reorder the video declarations in the html file which ever 2 I list last do not open AND they still do not loop.
 
Top