2
votes

Chrome says "This plugin isn't supported" even though I have both video formats. Strangely I can play HTML5 video on other websites (with the same computer/browser). I looked at the source and they have mp4 first then webm.

I tested the site with chrome from another computer and it works fine. Chrome is at the latest version on both computers.

Here is my code:

<video preload="auto" autoplay loop>
    <source src="video/ssweb.mp4" type="video/mp4"/>
    <source src="video/ssweb.webm" type="video/webm"/>
</video>
2

2 Answers

1
votes
<video preload="auto" autoplay loop muted>
<source src="video/ssweb.mp4" type="video/mp4"/>
<source src="video/ssweb.webm" type="video/webm"/>
</video>

Add the muted attribute to the <video> tag.

-1
votes

As you explain your issue...Please check with your 'Chrome extension' in setting, it might be possible that you have any extension which is creating problem in playing the video.

Please try to stop all extensions and then try to run the page again. Hope it will work.