try-g1 / index.html
CodingHsun's picture
merge 3 cam to vid
dd459f9 verified
Raw
History Blame Contribute Delete
2.94 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Videos</title>
<style>
body {
margin: 0;
padding: 40px;
font-family: Arial, sans-serif;
background: #f5f5f5;
}
h1 {
margin: 0 0 12px;
}
h3 {
margin: 0 0 8px;
}
.description {
margin-bottom: 30px;
color: #555;
}
.videos {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
.video-card {
max-width: 600px;
margin: 0 auto;
background: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
border-radius: 8px;
overflow: hidden;
}
.video-card video {
width: 100%;
display: block;
}
.video-info {
padding: 16px;
}
.video-title {
font-size: 18px;
font-weight: bold;
}
.render-section {
margin-top: 10px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.render-section h4 {
margin: 0 0 12px;
}
.render-section img {
display: block;
margin-top: 16px;
max-width: 100%;
height: 400px;
object-fit: contain;
}
</style>
</head>
<body>
<h1>G1仿真</h1>
<h3>左边是真值,右边是模型跑的</h3>
<div class="description">
由于没有mujoto世界,所以是输入训练集-模型推理-翻译到动作-mojoto播片
</div>
<div class="videos">
<!-- Video 1 -->
<div class="video-card">
<video controls>
<source src="https://files.catbox.moe/l8a4ej.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="video-info">
<div class="video-title">episode-2</div>
</div>
</div>
<!-- Video 2 -->
<div class="video-card">
<video controls>
<source src="https://files.catbox.moe/swefhz.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="video-info">
<div class="video-title">episode-3</div>
</div>
</div>
<!-- Video 3 -->
<div class="video-card">
<video controls>
<source src="https://files.catbox.moe/xzczu3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="video-info">
<div class="video-title">episode-4</div>
</div>
</div>
<!-- Render -->
<div class="render-section">
<h4>把g1的灵巧手改成了二爪,凑合一下:</h4>
<a href="g1.xml" download>
临时的二爪版本.xml
</a>
<img src="https://i.ibb.co/RGDLzBx4/g1-temp.png" alt="渲染图">
</div>
</div>
<script>
document.querySelectorAll('video').forEach(video => {
video.playbackRate = 2;
});
</script>
</body>
</html>