Spaces:
Running
Running
File size: 2,938 Bytes
c85875b 3c2e86f c85875b a83c1f4 c85875b dd459f9 c85875b dd459f9 c85875b dd459f9 c85875b b5a46df c85875b 3c2e86f c85875b 3c2e86f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | <!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> |