<html>
<head><title>VLC mozilla plugin test page</title></head>
<body>
<body onload="document.video1.play();document.video2.play()">
<h3>Title</h3>
<embed type="application/x-vlc-plugin"
name="video1"
autoplay="yes" loop="no" mute="yes" width="300" height="225"
target="udp://@localhost:1234" />
<br />
<a href="javascript:;" onclick='document.video1.play()'>Play</a>
<a href="javascript:;" onclick='document.video1.stop()'>Stop</a>
<a href="javascript:;" onclick='document.video1.mute()'>Mute</a>
<a href="javascript:;" ondblclick='document.video1.fullscreen();document.video1.mute()'>Fullscreen</a>
<h3>Title 2</h3>
<embed type="application/x-vlc-plugin"
name="video2"
autoplay="yes" loop="no" width="300" height="225"
target="udp://@localhost:1235" />
<br />
<a href="javascript:;" onclick='document.video2.play()'>Play</a>
<a href="javascript:;" onclick='document.video2.stop()'>Stop</a>
<a href="javascript:;" onclick='document.video2.mute()'>Mute</a>
<a href="javascript:;" onclick='document.video2.fullscreen();document.video2.mute()'>Fullscreen</a>
</body>
</html>