Hi,
I am trying to display a HTML 5 page with the <video> element and an
OGG video in Safari.
I use the sample video posted here:
http://camendesign.com/code/video_for_everybody
My sample page works fine in Safari 4.0.2 when I supply the MP4 video
along with the OGG video:
<video width="640" height="360"
controls="controls" autoplay="autoplay">
<source src="video_for_everybody.ogv" type="video/ogg"
/>
<source src="video_for_everybody.mp4" type="video/mp4"
/>
</video>
Since I have installed the XiphQT plugin, I thought the page should
also work, if I only supply
the OGG video:
<video width="640" height="360"
controls="controls" autoplay="autoplay">
<source src="video_for_everybody.ogv" type="video/ogg"
/>
</video>
Unfortunately, the video works now only in Firefox.
Does the XiphQT plugin not work in Safari at all, or are there some
settings that I can adjust?
TIA,
Werner