index.html 5.2 KB

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