tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_peerConnection_twoAudioStreams.html (524B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <script type="application/javascript" src="pc.js"></script>
      5 </head>
      6 <body>
      7 <pre id="test">
      8 <script type="application/javascript">
      9  createHTML({
     10    bug: "1091242",
     11    title: "Multistream: Two audio streams"
     12  });
     13 
     14  runNetworkTest(function (options) {
     15    const test = new PeerConnectionTest(options);
     16    test.setMediaConstraints([{audio: true}, {audio: true}],
     17                             [{audio: true}, {audio: true}]);
     18    return test.run();
     19  });
     20 </script>
     21 </pre>
     22 </body>
     23 </html>