index.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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://localhost/socket.io/socket.io.js"></script>
  7. <script src="/io.js"></script>
  8. </head>
  9. <body onload="init()">
  10. <div id="videos">
  11. <video id="you" autoplay></video>
  12. </div>
  13. <div id="chatbox">
  14. <div id="messages">
  15. </div>
  16. <div id="chat">
  17. <input id="chatinput" type="text"/>
  18. </div>
  19. </div>
  20. <script>
  21. var videos = [];
  22. function getNumPerRow() {
  23. var len = videos.length;
  24. var biggest;
  25. // Ensure length is even for better division.
  26. if (len % 2 === 1) {
  27. len++;
  28. }
  29. biggest = Math.ceil(Math.sqrt(len));
  30. while (len % biggest !== 0) {
  31. biggest++;
  32. }
  33. return biggest;
  34. }
  35. function subdivideVideos() {
  36. var perRow = getNumPerRow();
  37. var numInRow = 0;
  38. for (var i = 0, len = videos.length; i < len; i++) {
  39. var video = videos[i];
  40. setWH(video, i);
  41. numInRow = (numInRow + 1) % perRow;
  42. }
  43. }
  44. function setWH(video, i) {
  45. var perRow = getNumPerRow();
  46. var perColumn = Math.ceil(videos.length / perRow);
  47. var width = Math.floor((window.innerWidth - 200) / perRow);
  48. var height = Math.floor(window.innerHeight / perColumn);
  49. console.log(width, height);
  50. video.width = width;
  51. video.height = height;
  52. video.style.position = "absolute";
  53. video.style.left = (i % perRow) * width + "px";
  54. video.style.top = Math.floor(i / perRow) * height + "px";
  55. }
  56. function cloneVideo(domId, socketId) {
  57. var video = document.getElementById(domId);
  58. var clone = video.cloneNode(false);
  59. clone.id = "remote" + socketId;
  60. document.getElementById('videos').appendChild(clone);
  61. videos.push(clone);
  62. return clone;
  63. }
  64. function removeVideo(socketId) {
  65. var video = document.getElementById('remote' + socketId);
  66. if (video) {
  67. videos.splice(videos.indexOf(video), 1);
  68. video.parentNode.removeChild(video);
  69. }
  70. }
  71. function initChat() {
  72. var input = document.getElementById("chatinput");
  73. input.addEventListener('keydown', function(event) {
  74. var key = event.which || event.keyCode;
  75. if (key === 13) {
  76. rtc._socket.emit('chat msg', input.value);
  77. addToChat(input.value);
  78. input.value = "";
  79. }
  80. }, false);
  81. rtc._socket.on('receive chat msg', function(data) {
  82. console.log(data.color);
  83. addToChat(data.msg, data.color.toString(16));
  84. });
  85. }
  86. function addToChat(msg, color) {
  87. var messages = document.getElementById('messages');
  88. msg = sanitize(msg);
  89. if (color) {
  90. msg = '<span style="color: #' + color + ';">' + msg + '</span>';
  91. } else {
  92. msg = "<strong>" + msg + "</strong>";
  93. }
  94. messages.innerHTML = messages.innerHTML + msg + '<br>';
  95. }
  96. function sanitize(msg) {
  97. return msg.replace(/</g, '&lt;');
  98. }
  99. function init() {
  100. rtc.createStream('you', function(stream) {
  101. videos.push(document.getElementById('you'));
  102. rtc.attachStream(stream, 'you');
  103. subdivideVideos();
  104. });
  105. rtc.connect("http://localhost/");
  106. rtc.on('add remote stream', function(stream, socketId) {
  107. console.log("ADDING REMOTE STREAM...");
  108. var clone = cloneVideo('you', socketId);
  109. rtc.attachStream(stream, clone.id);
  110. subdivideVideos();
  111. });
  112. rtc.on('disconnect stream', function(data) {
  113. console.log('remove ' + data);
  114. removeVideo(data);
  115. });
  116. initChat();
  117. }
  118. function onClose(data) {
  119. // video.parentNode.removeChild(video);
  120. }
  121. window.onresize = function(event) {
  122. subdivideVideos();
  123. };
  124. </script>
  125. </body>
  126. </html>