index.html
817 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<audio controls="controls" id="mySound">
<source src ="sound.wav" type="audio/wav">
</audio>
<script
src="jquery.js"></script>
<script type="text/javascript">
window.WebSocket=(window.WebSocket||window.MozWebSocket);
var websocket=new WebSocket('ws://10.42.93:9000','myprotocol');
var test1 = document.getElementById("mySound");
test1.src="sound.wav";
test1.autoplay = true;
test1.loop = true;
websocket.onopen=function(){ $('h1').css('color','green'); };
websocket.onerror=function(){ $('h1').css('color','red'); };
websocket.onmessage=function(message){
test1.pause();
test1.src="sound.wav?"+ new Date().getTime();
test1.load();
test1.play();
};
</script>
</head>
<body>
<h1>WebSockets test</h1>
</body>
</html>