Skip to content

Commit bbeedcd

Browse files
committed
docs(libero): robust video embeds — <source> + download links + GitHub note
Inline <video> of a repo-relative file does not play on GitHub's markdown viewer (only on the built docs site). Add <source> elements, per-clip download links, and a note pointing to roboverse.wiki / local 'make html'.
1 parent 91e58a6 commit bbeedcd

1 file changed

Lines changed: 16 additions & 4 deletions

File tree

  • docs/source/dataset_benchmark/integrations

docs/source/dataset_benchmark/integrations/libero.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,25 @@ Beyond "passthrough == native by construction", we load each task's own combined
108108
MJCF (Franka + objects + arena + camera) into **MetaSim's MuJoCo handler** and
109109
reproduce the demo — proving the MetaSim backend simulates the LIBERO scene 1:1.
110110

111-
**Stage 1 — kinematics** (per-frame `set_states`, geometry/pose 1:1):
111+
```{note}
112+
The videos play on the built docs site (roboverse.wiki). On GitHub's markdown
113+
viewer, inline `<video>` of a repo-relative file does not play — use the
114+
download links, or build the docs locally (`cd docs && make html`).
115+
```
116+
117+
**Stage 1 — kinematics** (per-frame `set_states`, geometry/pose 1:1) —
118+
[download](../../_static/integrations/libero/sidebyside_kinematic_spatial_task0.mp4):
112119

113-
<video controls width="640" src="../../_static/integrations/libero/sidebyside_kinematic_spatial_task0.mp4"></video>
120+
<video controls width="640" preload="metadata">
121+
<source src="../../_static/integrations/libero/sidebyside_kinematic_spatial_task0.mp4" type="video/mp4">
122+
</video>
114123

115-
**Stage 2 — dynamics** (MetaSim's engine steps under the captured ctrl):
124+
**Stage 2 — dynamics** (MetaSim's engine steps under the captured ctrl) —
125+
[download](../../_static/integrations/libero/sidebyside_dynamics_spatial_task0.mp4):
116126

117-
<video controls width="640" src="../../_static/integrations/libero/sidebyside_dynamics_spatial_task0.mp4"></video>
127+
<video controls width="640" preload="metadata">
128+
<source src="../../_static/integrations/libero/sidebyside_dynamics_spatial_task0.mp4" type="video/mp4">
129+
</video>
118130

119131
Left = native LIBERO `agentview_rgb`, right = MetaSim render. Per-frame
120132
`max|qpos − recorded| = 0.0` (exact); the MetaSim engine step matches reference

0 commit comments

Comments
 (0)