Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to play video with different browser

<video Controls>
      <source src="Videos/2.ogv" type="video/ogv">
      <source src="Videos/2.mp4" type="video/mp4">
      </video>

but the google chrome plays the video but firefox doesn't play it. it shows an error that perticuler MIME type is missing after registering in IIS for ogv extension it still shows an error. is there any format that all browser support?

share|improve this question

4 Answers

up vote 1 down vote accepted

The content-type should be video/ogg not video/ogv-

<source src="Videos/2.ogv" type="video/ogg">

Add these MIME types in your .htaccess file

Audio

AddType audio/aac .aac
AddType audio/mp4 .mp4 .m4a
AddType audio/mpeg .mp1 .mp2 .mp3 .mpg .mpeg
AddType audio/ogg .oga .ogg
AddType audio/wav .wav
AddType audio/webm .webm

Video

AddType video/mp4 .mp4 .m4v
AddType video/ogg .ogv
AddType video/webm .webm

HTML5 Audio & Video MIME Types

share|improve this answer
sir it still don't work. i have made such changes <video controls="controls"> <source src="Videos/2.ogv" type="video/ogg"> <source src="Videos/2.mp4" type="video/mp4"> </video> – Abhishek gupta Oct 4 '12 at 12:30
@Abhishekgupta You need to contact your webhost and get them to add .ogv - video/ogg as a valid MIME type (they should know what you mean) Same for MP4. – Dipaks Oct 4 '12 at 12:41
sir u mean to add at IIS ? – Abhishek gupta Oct 4 '12 at 12:43
@Abhishekgupta check this stackoverflow.com/questions/2964193/html5-video-problem – Dipaks Oct 4 '12 at 12:57
sir i have converted the file into .webm if i play the individual file. it plays into a firefox. but if i am integrating into my project it doesnt...<body> <form id="form1" runat="server"> <video controls="controls" tabindex="5"> <source src="Videos/2.webm" type="video/webm"> <source src="Videos/2.ogv" type="video/ogg"> <source src="Videos/2.mp4" type="video/mp4"> </video> <asp:Button ID="Button1" runat="server" Text="View" /> </form> </body> </html> the code is as follows – Abhishek gupta Oct 5 '12 at 6:59

Try updating the firefox maybe it dont support HTML 5

share|improve this answer
Sir i updated the firefox to version 15 but still doesn't play – Abhishek gupta Oct 4 '12 at 13:11
Firefox was one of the first to support HTML5. – Rob Oct 4 '12 at 13:11
w3schools.com/tags/tryit.asp?filename=tryhtml5_video try this. if it works your .ogg file is broken – Andrey Tsarev Oct 4 '12 at 13:30

mp4 is not supported by Firefox, check compatibility issues here : http://html5test.com/

share|improve this answer
He's using .ogv. – Rob Oct 4 '12 at 13:13

Which version of FireFox are you using?

Please check this link http://www.w3schools.com/html/html_videos.asp

Happy Coding!!!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.