You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command will open a `rerun <https://rerun.io>`_ window displaying the selected episode, allowing you to explore the episode interactively.
13
19
20
+
Camera Logging Mode
21
+
-------------------
22
+
23
+
For datasets that include camera streams stored as MP4 files, ``opentau-dataset-viz`` supports different camera logging modes:
24
+
25
+
- ``frames``: logs decoded frames with ``rr.Image``.
26
+
- ``asset_video``: logs source MP4 files with ``rr.AssetVideo`` and synchronizes playback using ``rr.VideoFrameReference``.
27
+
- ``auto`` (default): same behavior as ``asset_video`` with graceful fallback to ``frames`` when MP4 assets or required Rerun APIs are unavailable.
28
+
29
+
If your episodes contain one or more videos and the generated ``.rrd`` files are large, prefer ``asset_video`` (or ``auto``) to take advantage of video compression.
30
+
31
+
.. code-block:: bash
32
+
33
+
# Prefer MP4 assets (smaller .rrd when videos are available)
0 commit comments