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?