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 using firefox 12.0 version and videos are not working in Firefox, chrome and safari too.....

On local videos are working, but on server videos are not working, on server, browser asking for MIME type...

I am using this code for the video embed...

<video width="230" height="170" controls="controls">
    <source src="video/main.mp4" type="video/mp4; codecs="avc1.42E01E, mp4a.40.2"" />
    <source src="video/main.ogv" type="video/ogg; codecs="dirac, vorbis"" />
</video>

Please give me solution on this.

share|improve this question
i did it...check now – user1429933 Jun 4 '12 at 7:48

1 Answer

It would help to know what software is serving the video files from the server.

Do you know if that software supports HTTP Range requests? Chrome and Firefox use this for audio and video files to retrieve parts of the file, either to avoid downloading a potentially very large file, or to allow the user to move backwards, forwards, pause and play media. Local files support ranges and seeking, but not all web server software does.

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.