Code: Select all
<html>
<title>VLC plugin test page</title>
<body>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2"
width="1280"
height="720"
id="vlc"
</embed>
<script>
var vlc = document.getElementById("vlc");
vlc.playlist.add("udp://@238.1.1.3:4000", "RCTI(H.264) [Harmonic]");
vlc.playlist.play();
vlc.video.deinterlace.enable("blend");
</script>
</body>