22 lines
655 B
HTML
22 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>edge5 video relay</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/mpegts.js/dist/mpegts.js"></script>
|
|
</head>
|
|
<body>
|
|
<video id="v" controls autoplay muted style="width:100%"></video>
|
|
<script>
|
|
const wsUrl = `${location.protocol === 'https:' ? 'wss' : 'ws'}://${location.host}/ws`;
|
|
const player = mpegts.createPlayer(
|
|
{ type: 'mpegts', isLive: true, url: wsUrl },
|
|
{ liveBufferLatencyChasing: true, liveBufferLatencyMaxLatency: 1.5 }
|
|
)
|
|
player.attachMediaElement(document.getElementById('v'))
|
|
player.load()
|
|
player.play()
|
|
</script>
|
|
</body>
|
|
</html>
|