demo.html 612 B

1234567891011121314151617181920212223
  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. Video<br />
  17. <video id="video1" width="160" height="120" autoplay muted></video> <br />
  18. Logs<br />
  19. <div id="logs"></div>