sage/wwwroot/tmp/rtc/inner.html
2025-07-16 14:28:41 +08:00

24 lines
628 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>浏览器本地同页面模拟点对点连接(无信令服务版)</title>
<style>
video {
width: 300px;
height: 250px;
}
</style>
</head>
<body>
我的本地视频:<video id="local" autoplay></video> 远程连接拿到我的本地视频<video
id="local-from-remote"
autoplay
></video>
<script src="./inner.js"></script>
</body>
</html>