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 HTML5 Video with this code:

<div id="lightBox1" class="lightBox">
    <video id="video" controls preload="metadata">
        <source width="100%" height="470" src="/ImageworkzAsia/video/iworkzvid.mp4" type="video/mp4">
        <source width="100%" height="470" src="/ImageworkzAsia/video/iworkzvid.ogv" type="video/ogg">
        <source width="100%" height="470" src="/ImageworkzAsia/video/iworkzvid.m4v" type="video/m4v">
        <p style="text-align:center;">Your browser does not support HTML5 Video.</p><br />
    </video>
</div>

The problem is that it does not play in Mobile Safari but it does play in desktop Safari. It also plays in chrome, firefox as expected. I have not yet tested this in an android device. Any ideas ?

share|improve this question
i do not know how to do so. xD pls instruct me on how I should do this. – AJ Naidas May 24 '12 at 6:44

2 Answers

up vote 1 down vote accepted

Couple of things to try:

  1. Use absolute URLs in 'Video src' attribute

  2. Some devices may take little extra time to load the video

  3. Change the device and try ( as you said)

Hope this will help.

share|improve this answer

Your Mobile phone browser may not support the HTML5 ..

share|improve this answer
The question clearly says this is about Mobile Safari. While no version number is stated, the information is enough to conclude that the browser should work. – pixelistik May 24 '12 at 8:06

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.