HTML5 Media Support in WebKit
Das WebKit nightly build unterstützt das HTML5 <video> Tag.
They also provide a rich scripting API for controlling playback. Adding video to a web page is almost as simple as adding an image:
<video src=sample.mov autoplay></video>
<script>
function playPause() {
var myVideo = document.getElementsByTagName('video')[0];
if (myVideo.paused)
myVideo.play();
else
myVideo.pause();
}
</script>
<input type=button onclick="playPause()" value="Play/Pause">
