I have developed a website using wordpress. I have placed a video in the home page and it works fine in Chrome, Mozila and IE but in Safari. I have used the html5 video tag, can any one suggest how I can play MP4 videos in Safari? This is the code I am using to play the video in my site.
<video width="800" height="1000" controls>
<source src="life.mp4" type="video/mp4">
<source src="life.ogg" type="video/ogg">
Your browser doesn't support the video.
</video>
The code above worked fine, except in Safari. Is there any flash player solution toplay .mp4 videos?