demo.html 738 B

123456789101112131415161718192021222324252627
  1. <!--
  2. SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  3. SPDX-License-Identifier: MIT
  4. -->
  5. <script src="https://webrtc.github.io/adapter/adapter-latest.js"></script>
  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. <br />
  17. <div>
  18. Browser stream<br />
  19. <video id="browserVideo" width="200" height="200" autoplay muted></video>
  20. </div>
  21. <div id="serverVideos">
  22. Video from server<br />
  23. </div>