index.html 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Example webrtc.io</title>
  5. <link type="text/css" href="/style.css" rel="stylesheet"></link>
  6. <script src="http://multiwebrtc.nodejitsu.com/socket.io/socket.io.js"></script>
  7. <script src="/io.js"></script>
  8. <script type="text/javascript">
  9. var _gaq = _gaq || [];
  10. _gaq.push(['_setAccount', 'UA-31155783-4']);
  11. _gaq.push(['_trackPageview']);
  12. (function() {
  13. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  14. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  15. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  16. })();
  17. </script>
  18. </head>
  19. <body onload="init()">
  20. <div id="videos">
  21. <video id="you" autoplay></video>
  22. </div>
  23. <div id="chatbox">
  24. <button id="fullscreen">Enter Full Screen</button>
  25. <div id="messages">
  26. </div>
  27. <br>
  28. <input id="chatinput" type="text"/>
  29. </div>
  30. <script>
  31. var videos = [];
  32. function getNumPerRow() {
  33. var len = videos.length;
  34. var biggest;
  35. // Ensure length is even for better division.
  36. if (len % 2 === 1) {
  37. len++;
  38. }
  39. biggest = Math.ceil(Math.sqrt(len));
  40. while (len % biggest !== 0) {
  41. biggest++;
  42. }
  43. return biggest;
  44. }
  45. function subdivideVideos() {
  46. var perRow = getNumPerRow();
  47. var numInRow = 0;
  48. for (var i = 0, len = videos.length; i < len; i++) {
  49. var video = videos[i];
  50. setWH(video, i);
  51. numInRow = (numInRow + 1) % perRow;
  52. }
  53. }
  54. function setWH(video, i) {
  55. var perRow = getNumPerRow();
  56. var perColumn = Math.ceil(videos.length / perRow);
  57. var width = Math.floor((window.innerWidth) / perRow);
  58. var height = Math.floor((window.innerHeight - 190) / perColumn);
  59. console.log(width, height);
  60. video.width = width;
  61. video.height = height;
  62. video.style.position = "absolute";
  63. video.style.left = (i % perRow) * width + "px";
  64. video.style.top = Math.floor(i / perRow) * height + "px";
  65. }
  66. function cloneVideo(domId, socketId) {
  67. var video = document.getElementById(domId);
  68. var clone = video.cloneNode(false);
  69. clone.id = "remote" + socketId;
  70. document.getElementById('videos').appendChild(clone);
  71. videos.push(clone);
  72. return clone;
  73. }
  74. function removeVideo(socketId) {
  75. var video = document.getElementById('remote' + socketId);
  76. if (video) {
  77. videos.splice(videos.indexOf(video), 1);
  78. video.parentNode.removeChild(video);
  79. }
  80. }
  81. function initChat() {
  82. var input = document.getElementById("chatinput");
  83. input.addEventListener('keydown', function(event) {
  84. var key = event.which || event.keyCode;
  85. if (key === 13) {
  86. rtc._socket.emit('chat msg', input.value);
  87. addToChat(input.value);
  88. input.value = "";
  89. }
  90. }, false);
  91. rtc._socket.on('receive chat msg', function(data) {
  92. console.log(data.color);
  93. addToChat(data.msg, data.color.toString(16));
  94. });
  95. }
  96. function addToChat(msg, color) {
  97. var messages = document.getElementById('messages');
  98. msg = sanitize(msg);
  99. if (color) {
  100. msg = '<span style="color: #' + color + '; padding-left: 15px">' + msg + '</span>';
  101. } else {
  102. msg = '<strong style="padding-left: 15px">' + msg + '</strong>';
  103. }
  104. messages.innerHTML = messages.innerHTML + msg + '<br>';
  105. messages.scrollTop = 10000;
  106. }
  107. function sanitize(msg) {
  108. return msg.replace(/</g, '&lt;');
  109. }
  110. function initFullScreen(){
  111. var button = document.getElementById("fullscreen");
  112. button.addEventListener('click', function(event) {
  113. var elem = document.getElementById("videos");
  114. //show full screen
  115. elem.webkitRequestFullScreen();
  116. });
  117. }
  118. function init() {
  119. rtc.createStream('you', function(stream) {
  120. videos.push(document.getElementById('you'));
  121. rtc.attachStream(stream, 'you');
  122. subdivideVideos();
  123. });
  124. rtc.connect("http://multiwebrtc.nodejitsu.com/");
  125. rtc.on('add remote stream', function(stream, socketId) {
  126. console.log("ADDING REMOTE STREAM...");
  127. var clone = cloneVideo('you', socketId);
  128. rtc.attachStream(stream, clone.id);
  129. subdivideVideos();
  130. });
  131. rtc.on('disconnect stream', function(data) {
  132. console.log('remove ' + data);
  133. removeVideo(data);
  134. });
  135. initChat();
  136. initFullScreen();
  137. }
  138. function onClose(data) {
  139. // video.parentNode.removeChild(video);
  140. }
  141. window.onresize = function(event) {
  142. subdivideVideos();
  143. };
  144. </script>
  145. </body>
  146. </html>