mirror of
https://github.com/pion/webrtc.git
synced 2025-10-05 23:26:58 +08:00

This commit has breaking changes. This API change means we can no longer support an arbitrary number of receivers. For every track you want to receive you MUST call PeerConnection.AddTransceiver We do now support sending an multiple audio/video feeds. You can see this behavior via gstreamer-receive and gstreamer-send currently. Resolves #54
18 lines
470 B
HTML
18 lines
470 B
HTML
|
|
Browser base64 Session Description<br />
|
|
<textarea id="localSessionDescription" readonly="true"></textarea> <br />
|
|
|
|
Golang base64 Session Description<br />
|
|
<textarea id="remoteSessionDescription"></textarea> <br/>
|
|
<button onclick="window.startSession()"> Start Session </button>
|
|
<button onclick="window.addDisplayCapture()" id="displayCapture"> Display Capture </button><br />
|
|
|
|
<br />
|
|
|
|
Video<br />
|
|
<div id="localVideos"></div> <br />
|
|
|
|
|
|
Logs<br />
|
|
<div id="logs"></div>
|