I perfer the live tpl that uses flash, flash makes it more seemless...(to me atleast...)
Your browser will require the vlc player plugin however i prefer the HTML 5 Players But Its Up To You.
http://www.w3schools.com/html/html5_video.aspGoogle is your friend:
https://forum.videolan.org/viewtopic.php?f=14&t=34152here...
------
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Simple VLC activeX page playing Nasa stream</title>
</head>
<body>
<!--
Insert VideoLAN.VLCPlugin.2
-->
<div>
<OBJECT classid="clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921"
codebase="
http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab#Version=0,8,6,0"
width="640"
height="480"
id="vlc"
events="True">
<!--below you can put your url to the video the current one is the NASA stream-->
<param name="MRL" value="THIS IS YOU VIDEO PATH!!!" />
<param name="ShowDisplay" value="True" />
<param name="AutoLoop" value="False" />
<param name="AutoPlay" value="True" />
<param name="Volume" value="50" />
<param name="StartTime" value="0" />
<EMBED pluginspage="
http://www.videolan.org"
type="application/x-vlc-plugin"
progid="VideoLAN.VLCPlugin.2"
width="640"
height="480"
name="vlc">
</EMBED>
</OBJECT>
</div>
<INPUT type=button id="Play" value=" Play " onClick='document.getElementById("vlc").playlist.play();'>
<INPUT type=button id="Stop" value="Stop" onClick='document.getElementById("vlc").playlist.stop();'>
<!--Script to detect if vlc 0.8.6a is installed-->
<script language="javascript">
try{
if (document.getElementById("vlc").VersionInfo!="0.8.6 Janus")
{
alert("Download and install the VLC player")
window.navigate("
http://www.videolan.org")
}
}
catch(e)
{
alert("Download and install the VLC player")
window.navigate("
http://www.videolan.org")
}
</script>
</body>
</html>
------------