Files
2025-12-09 20:22:03 +08:00

41 lines
843 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>h.264 To fmp4</title>
</head>
<body>
<h2>h.264 To fmp4</h2>
<script type="text/javascript" src="./js/wfs.js" ></script>
<div class="wfsjs">
<video id="video1" width="640" height="480" controls autoplay muted></video>
<div class="ratio"></div>
</div>
<script>
window.onload = function () {
if (Wfs.isSupported()) {
var video1 = document.getElementById("video1"),
wfs = new Wfs();
wfs.attachMedia(video1,'ch1',"H264Raw","ws/videoStream/102023122221190002/a4c6a42f-f4f7-4079-8d11-37da5227585a");
// var video2 = document.getElementById("video2"),
// wfs2 = new Wfs();
// wfs2.attachMedia(video2,'ch2');
}
};
</script>
</body>
</html>