demo.html 682 B

12345678910111213141516171819202122232425
  1. <!--
  2. SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  3. SPDX-License-Identifier: MIT
  4. -->
  5. Browser base64 Session Description<br />
  6. <textarea id="localSessionDescription" readonly="true"></textarea> <br />
  7. <button onclick="window.copySDP()">
  8. Copy browser SDP to clipboard
  9. </button>
  10. <br />
  11. <br />
  12. Golang base64 Session Description<br />
  13. <textarea id="remoteSessionDescription"></textarea><br/>
  14. <button onclick="window.startSession()">Start Session</button><br />
  15. <br />
  16. Message<br />
  17. <textarea id="message">This is my DataChannel message!</textarea> <br/>
  18. <button onclick="window.sendMessage()">Send Message</button> <br />
  19. <br />
  20. Logs<br />
  21. <div id="logs"></div>