I want to include mp4 video in a html page that launches automatically and then loops forever.
I am using the below code which I copied from an older project. (It's probably bad and outdated)
<p><object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="1216" height="1216">
<param name="src" value="ISS_1k_5sec.mp4">
<param name="loop" value="true">
<param name="fileName" value="ISS_1k_5sec.mp4">
<param name="animationatStart" value="true">
<param name="transparentatStart" value="true">
<param name="autoStart" value="true">
<param name="showControls" value="true">
<param name="Volume" value="-450">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" src="ISS_1k_5sec.mp4" name="MediaPlayer1" width=1216 height=1216 autostart=1 showcontrols=1 volume=-450 loop="true">
</object></p>
It launches and plays once but then stops. I can get it to play again by re-loading the page. But that's not the required functionality.
What's missing to make it loop?
FYI the page is there : http://skywatcher.space:8000/sun_2019/solar_campaign_2019.html