Click here to Skip to main content
15,888,113 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi there,
I had applied a code in asp.net as mention below

<video width="320" height="240" controls="controls">
  <source src="../Video/1.mp4" type="video/mp4" />
 </video>




here i am getting an error in Mozilla firefox as No Video with Support Format and MIME type Found .But in remaining browser google chrome and all iam able to see the video.
Posted
Updated 8-Jun-18 10:36am

1 solution

Solved Problem

<video width="648" height="380" controls="controls">
<source src="../Video/1.mp4" type="video/mp4" />
<source src="../Video/1.webm" type="video/webm" />
</video>

Because Mozilla Firefox supports .webm format.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900