demo.html 913 B

123456789101112131415161718192021222324252627282930
  1. <!--
  2. SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  3. SPDX-License-Identifier: MIT
  4. -->
  5. <div id="signalingContainer" style="display: none">
  6. Browser base64 Session Description<br />
  7. <textarea id="localSessionDescription" readonly="true"></textarea> <br />
  8. <button onclick="window.copySDP()">
  9. Copy browser SDP to clipboard
  10. </button>
  11. <br />
  12. <br />
  13. Golang base64 Session Description<br />
  14. <textarea id="remoteSessionDescription"></textarea> <br/>
  15. <button onclick="window.startSession()"> Start Session </button><br />
  16. </div>
  17. <br />
  18. Video<br />
  19. <video id="video1" width="160" height="120" autoplay muted></video> <br />
  20. <button class="createSessionButton" onclick="window.createSession(true)"> Publish a Broadcast </button>
  21. <button class="createSessionButton" onclick="window.createSession(false)"> Join a Broadcast </button><br />
  22. <br />
  23. Logs<br />
  24. <div id="logs"></div>