mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
35 lines
897 B
HTML
35 lines
897 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
* Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree.
|
|
-->
|
|
<html>
|
|
<head>
|
|
<title>PeerConnection PRANSWER Demo</title>
|
|
<!-- Load the polyfill to switch-hit between Chrome and Firefox -->
|
|
<style>
|
|
video {
|
|
border:5px solid black;
|
|
width:800px;
|
|
height:600px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<video id="vid2" autoplay></video>
|
|
<br>
|
|
<p>ip_address</p>
|
|
<input id="input1" type="text" name="ip_address" value="https://rp.zlmediakit.com:20443/webrtc?app=live&stream=test">
|
|
<br>
|
|
<button id="btn1">Call</button>
|
|
<button id="btn3">Hang Up</button>
|
|
</body>
|
|
<script src="js/adapter.js"></script>
|
|
<script src="js/common.js"></script>
|
|
<script src="js/main.js"></script>
|
|
</html>
|
|
|