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.

We have the following code:

<!DOCTYPE HTML>
<html>
<head>
</head>
<body>

  <video
    id="video" 
    src="http://ec2-50-16-201-31.compute-1.amazonaws.com/p/100/sp/10000/flvclipper/entry_id/0_hu1hm4qg"
    poster="http://www.frank151.com/files/imagecache/320w/videos/thumbs/FateFeat.jpg"
    autobuffer 
    width="320"
    height="240">not good</video>

  <script type="text/javascript">

    var video = document.getElementById('video');

    video.addEventListener('click',function(){
      video.play();
    },false);

  </script>

  <a href="http://ec2-50-16-201-31.compute-1.amazonaws.com/p/100/sp/10000/flvclipper/entry_id/0_hu1hm4qg">video</a>

</body>

We are doing testing in the Android simulator and the html5 video tag does not play the video but the direct link to the video file works with no issues. We are looking to get the html5 video playing with the tag and not a link.

Does anyone have any insight on what may be causing this issue?

Can it be a video formatting issue?

share|improve this question
2  
Have you tried it on an actual device? – Matt Ball Jul 30 '11 at 0:11
I tried it on HTC Evo 4G. When I click play on HTML5 video it says "Cannot play video. Sorry, this video cannot be played." Clicking the direct link to video file opens a dialog window asking if I want to play video online or download. After clicking 'Play online' it starts loading and then plays the video without any problems. – Vincent Aug 2 '11 at 21:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.