Advertisement
Guest User

Untitled

a guest
Jan 25th, 2024
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <script src="adapter-latest.js"></script>
  5.     <script type="text/javascript" src="$B2BAPIS/b2bapis/b2bapis.js"></script>
  6.     <script src="$WEBAPIS/webapis/webapis.js"></script>
  7.     <script src="browser.js"></script>
  8.     <script src="webrtc.js"></script>
  9.   </head>
  10.  
  11.   <body>
  12.     <video id="localVideo" autoplay playsinline muted style="width:40%;"></video>
  13.     <video id="remoteVideo" autoplay playsinline muted style="width:40%;"></video>
  14.  
  15.     <div style="margin-top: 10px;">
  16.       Open this page in a second browser window then click below to start the WebRTC connection.
  17.     </div>
  18.  
  19.     <div style="margin-top: 10px;">
  20.       <input type="button" id="start" onclick="start(true)" value="Start WebRTC"></input>
  21.     </div>
  22.     <div>
  23.       <canvas
  24.        id="displaySurface"
  25.        width="200"
  26.        height="200"
  27.      ></canvas>
  28.     </div>
  29.  
  30. <!--    <script type="text/javascript">-->
  31. <!--        pageReady();-->
  32. <!--    </script>-->
  33.   </body>
  34. </html>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement