mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-15 16:49:55 +00:00
681 lines
24 KiB
Python
681 lines
24 KiB
Python
#!/usr/bin/env python
|
|
|
|
# Copyright 2026 The HuggingFace Inc. team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""Tests for streaming video encoding."""
|
|
|
|
import queue
|
|
import threading
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
pytest.importorskip("av", reason="av is required (install lerobot[dataset])")
|
|
|
|
import av # noqa: E402
|
|
|
|
from lerobot.datasets.pyav_utils import get_codec
|
|
from lerobot.datasets.video_utils import (
|
|
StreamingVideoEncoder,
|
|
VideoEncoderConfig,
|
|
_CameraEncoderThread,
|
|
)
|
|
from lerobot.utils.constants import OBS_IMAGES
|
|
|
|
# Cross-codec validation tests only fire when the target codec is present
|
|
# in the local FFmpeg build; on other platforms validate() is a no-op.
|
|
_has_videotoolbox = get_codec("h264_videotoolbox") is not None
|
|
_videotoolbox_only = pytest.mark.skipif(
|
|
not _has_videotoolbox, reason="h264_videotoolbox not in local FFmpeg build"
|
|
)
|
|
|
|
|
|
# ─── _CameraEncoderThread tests ───
|
|
|
|
|
|
class TestCameraEncoderThread:
|
|
def test_encodes_valid_mp4(self, tmp_path):
|
|
"""Test that the encoder thread creates a valid MP4 file with correct frame count."""
|
|
num_frames = 30
|
|
height, width = 64, 96
|
|
fps = 30
|
|
video_path = tmp_path / "test_output" / "test.mp4"
|
|
|
|
frame_queue: queue.Queue = queue.Queue(maxsize=60)
|
|
result_queue: queue.Queue = queue.Queue(maxsize=1)
|
|
stop_event = threading.Event()
|
|
|
|
enc_cfg = VideoEncoderConfig(vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30, preset=13)
|
|
encoder_thread = _CameraEncoderThread(
|
|
video_path=video_path,
|
|
fps=fps,
|
|
vcodec=enc_cfg.vcodec,
|
|
pix_fmt=enc_cfg.pix_fmt,
|
|
codec_options=enc_cfg.get_codec_options(as_strings=True),
|
|
frame_queue=frame_queue,
|
|
result_queue=result_queue,
|
|
stop_event=stop_event,
|
|
)
|
|
encoder_thread.start()
|
|
|
|
# Feed frames (HWC uint8)
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (height, width, 3), dtype=np.uint8)
|
|
frame_queue.put(frame)
|
|
|
|
# Send sentinel
|
|
frame_queue.put(None)
|
|
encoder_thread.join(timeout=60)
|
|
assert not encoder_thread.is_alive()
|
|
|
|
# Check result
|
|
status, data = result_queue.get(timeout=5)
|
|
assert status == "ok"
|
|
assert data is not None # Stats should be returned
|
|
assert "mean" in data
|
|
assert "std" in data
|
|
assert "min" in data
|
|
assert "max" in data
|
|
assert "count" in data
|
|
|
|
# Verify the MP4 file is valid
|
|
assert video_path.exists()
|
|
with av.open(str(video_path)) as container:
|
|
stream = container.streams.video[0]
|
|
# The frame count should match
|
|
total_frames = sum(1 for _ in container.decode(stream))
|
|
assert total_frames == num_frames
|
|
|
|
def test_handles_chw_input(self, tmp_path):
|
|
"""Test that CHW format input is handled correctly."""
|
|
num_frames = 5
|
|
fps = 30
|
|
video_path = tmp_path / "test_chw" / "test.mp4"
|
|
|
|
frame_queue: queue.Queue = queue.Queue(maxsize=60)
|
|
result_queue: queue.Queue = queue.Queue(maxsize=1)
|
|
stop_event = threading.Event()
|
|
|
|
enc_cfg = VideoEncoderConfig(vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30, preset=13)
|
|
encoder_thread = _CameraEncoderThread(
|
|
video_path=video_path,
|
|
fps=fps,
|
|
vcodec=enc_cfg.vcodec,
|
|
pix_fmt=enc_cfg.pix_fmt,
|
|
codec_options=enc_cfg.get_codec_options(as_strings=True),
|
|
frame_queue=frame_queue,
|
|
result_queue=result_queue,
|
|
stop_event=stop_event,
|
|
)
|
|
encoder_thread.start()
|
|
|
|
# Feed CHW frames
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (3, 64, 96), dtype=np.uint8)
|
|
frame_queue.put(frame)
|
|
|
|
frame_queue.put(None)
|
|
encoder_thread.join(timeout=60)
|
|
|
|
status, _ = result_queue.get(timeout=5)
|
|
assert status == "ok"
|
|
assert video_path.exists()
|
|
|
|
def test_stop_event_cancellation(self, tmp_path):
|
|
"""Test that setting the stop event causes the thread to exit."""
|
|
fps = 30
|
|
video_path = tmp_path / "test_cancel" / "test.mp4"
|
|
|
|
frame_queue: queue.Queue = queue.Queue(maxsize=60)
|
|
result_queue: queue.Queue = queue.Queue(maxsize=1)
|
|
stop_event = threading.Event()
|
|
|
|
enc_cfg = VideoEncoderConfig(vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30, preset=13)
|
|
encoder_thread = _CameraEncoderThread(
|
|
video_path=video_path,
|
|
fps=fps,
|
|
vcodec=enc_cfg.vcodec,
|
|
pix_fmt=enc_cfg.pix_fmt,
|
|
codec_options=enc_cfg.get_codec_options(as_strings=True),
|
|
frame_queue=frame_queue,
|
|
result_queue=result_queue,
|
|
stop_event=stop_event,
|
|
)
|
|
encoder_thread.start()
|
|
|
|
# Feed a few frames
|
|
for _ in range(3):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
frame_queue.put(frame)
|
|
|
|
# Signal stop instead of sending sentinel
|
|
stop_event.set()
|
|
encoder_thread.join(timeout=10)
|
|
assert not encoder_thread.is_alive()
|
|
|
|
|
|
# ─── StreamingVideoEncoder tests ───
|
|
|
|
|
|
class TestStreamingVideoEncoder:
|
|
def _make_encoder_config(self, **kwargs):
|
|
"""Helper to build a VideoEncoderConfig."""
|
|
return VideoEncoderConfig(**kwargs)
|
|
|
|
def test_single_camera_episode(self, tmp_path):
|
|
"""Test encoding a single camera episode."""
|
|
video_keys = [f"{OBS_IMAGES}.laptop"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30, preset=13
|
|
),
|
|
)
|
|
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
num_frames = 20
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.laptop", frame)
|
|
|
|
results = encoder.finish_episode()
|
|
assert f"{OBS_IMAGES}.laptop" in results
|
|
|
|
mp4_path, stats = results[f"{OBS_IMAGES}.laptop"]
|
|
assert mp4_path.exists()
|
|
assert stats is not None
|
|
|
|
# Verify frame count
|
|
with av.open(str(mp4_path)) as container:
|
|
stream = container.streams.video[0]
|
|
total_frames = sum(1 for _ in container.decode(stream))
|
|
assert total_frames == num_frames
|
|
|
|
encoder.close()
|
|
|
|
def test_multi_camera_episode(self, tmp_path):
|
|
"""Test encoding multiple cameras simultaneously."""
|
|
video_keys = [f"{OBS_IMAGES}.laptop", f"{OBS_IMAGES}.phone"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30
|
|
),
|
|
)
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
num_frames = 15
|
|
for _ in range(num_frames):
|
|
frame0 = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
frame1 = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(video_keys[0], frame0)
|
|
encoder.feed_frame(video_keys[1], frame1)
|
|
|
|
results = encoder.finish_episode()
|
|
|
|
for key in video_keys:
|
|
assert key in results
|
|
mp4_path, stats = results[key]
|
|
assert mp4_path.exists()
|
|
assert stats is not None
|
|
|
|
encoder.close()
|
|
|
|
def test_sequential_episodes(self, tmp_path):
|
|
"""Test that multiple sequential episodes work correctly."""
|
|
video_keys = [f"{OBS_IMAGES}.cam"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30
|
|
),
|
|
)
|
|
|
|
for ep in range(3):
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
num_frames = 10 + ep * 5
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.cam", frame)
|
|
results = encoder.finish_episode()
|
|
|
|
mp4_path, stats = results[f"{OBS_IMAGES}.cam"]
|
|
assert mp4_path.exists()
|
|
|
|
with av.open(str(mp4_path)) as container:
|
|
stream = container.streams.video[0]
|
|
total_frames = sum(1 for _ in container.decode(stream))
|
|
assert total_frames == num_frames
|
|
|
|
encoder.close()
|
|
|
|
def test_cancel_episode(self, tmp_path):
|
|
"""Test that canceling an episode cleans up properly."""
|
|
video_keys = [f"{OBS_IMAGES}.cam"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30
|
|
),
|
|
)
|
|
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
for _ in range(5):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.cam", frame)
|
|
|
|
encoder.cancel_episode()
|
|
|
|
# Should be able to start a new episode after cancel
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
for _ in range(5):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.cam", frame)
|
|
results = encoder.finish_episode()
|
|
|
|
assert f"{OBS_IMAGES}.cam" in results
|
|
encoder.close()
|
|
|
|
def test_feed_without_start_raises(self, tmp_path):
|
|
"""Test that feeding frames without starting an episode raises."""
|
|
encoder = StreamingVideoEncoder(fps=30)
|
|
with pytest.raises(RuntimeError, match="No active episode"):
|
|
encoder.feed_frame("cam", np.zeros((64, 96, 3), dtype=np.uint8))
|
|
encoder.close()
|
|
|
|
def test_finish_without_start_raises(self, tmp_path):
|
|
"""Test that finishing without starting raises."""
|
|
encoder = StreamingVideoEncoder(fps=30)
|
|
with pytest.raises(RuntimeError, match="No active episode"):
|
|
encoder.finish_episode()
|
|
encoder.close()
|
|
|
|
def test_close_is_idempotent(self, tmp_path):
|
|
"""Test that close() can be called multiple times safely."""
|
|
encoder = StreamingVideoEncoder(fps=30)
|
|
encoder.close()
|
|
encoder.close() # Should not raise
|
|
|
|
def test_video_duration_matches_frame_count(self, tmp_path):
|
|
"""Test that encoded video duration matches num_frames / fps."""
|
|
video_keys = [f"{OBS_IMAGES}.cam"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30, preset=13
|
|
),
|
|
)
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
num_frames = 90 # 3 seconds at 30fps
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.cam", frame)
|
|
|
|
results = encoder.finish_episode()
|
|
mp4_path, _ = results[f"{OBS_IMAGES}.cam"]
|
|
|
|
expected_duration = num_frames / 30.0 # 3.0 seconds
|
|
|
|
with av.open(str(mp4_path)) as container:
|
|
stream = container.streams.video[0]
|
|
total_frames = sum(1 for _ in container.decode(stream))
|
|
if stream.duration is not None:
|
|
actual_duration = float(stream.duration * stream.time_base)
|
|
else:
|
|
actual_duration = float(container.duration / av.time_base)
|
|
|
|
assert total_frames == num_frames
|
|
# Allow small tolerance for duration due to codec framing
|
|
assert abs(actual_duration - expected_duration) < 0.5, (
|
|
f"Video duration {actual_duration:.2f}s != expected {expected_duration:.2f}s"
|
|
)
|
|
|
|
encoder.close()
|
|
|
|
def test_multi_camera_start_episode_called_once(self, tmp_path):
|
|
"""Test that with multiple cameras, no frames are lost due to double start_episode."""
|
|
video_keys = [f"{OBS_IMAGES}.cam1", f"{OBS_IMAGES}.cam2"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30
|
|
),
|
|
)
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
num_frames = 30
|
|
for _ in range(num_frames):
|
|
frame0 = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
frame1 = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(video_keys[0], frame0)
|
|
encoder.feed_frame(video_keys[1], frame1)
|
|
|
|
results = encoder.finish_episode()
|
|
|
|
# Both cameras should have all frames
|
|
for key in video_keys:
|
|
mp4_path, stats = results[key]
|
|
assert mp4_path.exists()
|
|
with av.open(str(mp4_path)) as container:
|
|
stream = container.streams.video[0]
|
|
total_frames = sum(1 for _ in container.decode(stream))
|
|
assert total_frames == num_frames, (
|
|
f"Camera {key}: expected {num_frames} frames, got {total_frames}"
|
|
)
|
|
|
|
encoder.close()
|
|
|
|
def test_encoder_threads_passed_to_thread(self, tmp_path):
|
|
"""Test that encoder_threads is stored and passed through to encoder threads."""
|
|
video_keys = [f"{OBS_IMAGES}.cam"]
|
|
cfg = VideoEncoderConfig(
|
|
vcodec="libsvtav1",
|
|
pix_fmt="yuv420p",
|
|
g=2,
|
|
crf=30,
|
|
)
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=cfg,
|
|
encoder_threads=2,
|
|
)
|
|
assert encoder._encoder_threads == 2
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
# Verify codec options include thread tuning for libsvtav1 (lp=…)
|
|
thread = encoder._threads[f"{OBS_IMAGES}.cam"]
|
|
assert "svtav1-params" in thread.codec_options or "threads" in thread.codec_options
|
|
|
|
# Feed some frames and finish to ensure it works end-to-end
|
|
num_frames = 10
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.cam", frame)
|
|
|
|
results = encoder.finish_episode()
|
|
mp4_path, stats = results[f"{OBS_IMAGES}.cam"]
|
|
assert mp4_path.exists()
|
|
assert stats is not None
|
|
|
|
with av.open(str(mp4_path)) as container:
|
|
stream = container.streams.video[0]
|
|
total_frames = sum(1 for _ in container.decode(stream))
|
|
assert total_frames == num_frames
|
|
|
|
encoder.close()
|
|
|
|
def test_encoder_threads_none_by_default(self, tmp_path):
|
|
"""Test that encoder_threads defaults to None (codec auto-detect)."""
|
|
encoder = StreamingVideoEncoder(fps=30)
|
|
assert encoder._encoder_threads is None
|
|
encoder.close()
|
|
|
|
def test_graceful_frame_dropping(self, tmp_path):
|
|
"""Test that full queue drops frames instead of crashing."""
|
|
video_keys = [f"{OBS_IMAGES}.cam"]
|
|
encoder = StreamingVideoEncoder(
|
|
fps=30,
|
|
camera_encoder_config=self._make_encoder_config(
|
|
vcodec="libsvtav1", pix_fmt="yuv420p", g=2, crf=30, preset=13
|
|
),
|
|
queue_maxsize=1,
|
|
)
|
|
encoder.start_episode(video_keys, tmp_path)
|
|
|
|
# Feed many frames quickly - with queue_maxsize=1, some will be dropped
|
|
num_frames = 50
|
|
for _ in range(num_frames):
|
|
frame = np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8)
|
|
encoder.feed_frame(f"{OBS_IMAGES}.cam", frame)
|
|
|
|
# Should not raise - frames are dropped gracefully
|
|
results = encoder.finish_episode()
|
|
assert f"{OBS_IMAGES}.cam" in results
|
|
|
|
mp4_path, _ = results[f"{OBS_IMAGES}.cam"]
|
|
assert mp4_path.exists()
|
|
|
|
# Some frames should have been dropped (queue was tiny)
|
|
dropped = encoder._dropped_frames.get(f"{OBS_IMAGES}.cam", 0)
|
|
# We can't guarantee drops but can verify no crash occurred
|
|
assert dropped >= 0
|
|
|
|
encoder.close()
|
|
|
|
|
|
# ─── Integration tests with LeRobotDataset ───
|
|
|
|
|
|
class TestStreamingEncoderIntegration:
|
|
def test_add_frame_save_episode_streaming(self, tmp_path):
|
|
"""Full integration test: add_frame -> save_episode with streaming encoding."""
|
|
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
|
|
|
features = {
|
|
"observation.images.cam": {
|
|
"dtype": "video",
|
|
"shape": (64, 96, 3),
|
|
"names": ["height", "width", "channels"],
|
|
},
|
|
"action": {"dtype": "float32", "shape": (6,), "names": ["j1", "j2", "j3", "j4", "j5", "j6"]},
|
|
}
|
|
|
|
dataset = LeRobotDataset.create(
|
|
repo_id="test/streaming",
|
|
fps=30,
|
|
features=features,
|
|
root=tmp_path / "streaming_test",
|
|
use_videos=True,
|
|
streaming_encoding=True,
|
|
)
|
|
|
|
assert dataset.writer._streaming_encoder is not None
|
|
|
|
num_frames = 20
|
|
for _ in range(num_frames):
|
|
frame = {
|
|
"observation.images.cam": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"action": np.random.randn(6).astype(np.float32),
|
|
"task": "test task",
|
|
}
|
|
dataset.add_frame(frame)
|
|
|
|
dataset.save_episode()
|
|
|
|
# Verify dataset metadata
|
|
assert dataset.meta.total_episodes == 1
|
|
assert dataset.meta.total_frames == num_frames
|
|
|
|
# Verify stats exist for the video key
|
|
assert dataset.meta.stats is not None
|
|
assert "observation.images.cam" in dataset.meta.stats
|
|
assert "action" in dataset.meta.stats
|
|
|
|
dataset.finalize()
|
|
|
|
def test_streaming_disabled_creates_pngs(self, tmp_path):
|
|
"""Test that disabling streaming encoding falls back to PNG path."""
|
|
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
|
|
|
features = {
|
|
"observation.images.cam": {
|
|
"dtype": "video",
|
|
"shape": (64, 96, 3),
|
|
"names": ["height", "width", "channels"],
|
|
},
|
|
"action": {"dtype": "float32", "shape": (6,), "names": ["j1", "j2", "j3", "j4", "j5", "j6"]},
|
|
}
|
|
|
|
dataset = LeRobotDataset.create(
|
|
repo_id="test/no_streaming",
|
|
fps=30,
|
|
features=features,
|
|
root=tmp_path / "no_streaming_test",
|
|
use_videos=True,
|
|
streaming_encoding=False,
|
|
)
|
|
|
|
assert dataset.writer._streaming_encoder is None
|
|
|
|
num_frames = 5
|
|
for _ in range(num_frames):
|
|
frame = {
|
|
"observation.images.cam": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"action": np.random.randn(6).astype(np.float32),
|
|
"task": "test task",
|
|
}
|
|
dataset.add_frame(frame)
|
|
|
|
# With streaming disabled, PNG files should be written
|
|
images_dir = dataset.root / "images"
|
|
assert images_dir.exists()
|
|
|
|
dataset.save_episode()
|
|
dataset.finalize()
|
|
|
|
def test_multi_episode_streaming(self, tmp_path):
|
|
"""Test recording multiple episodes with streaming encoding."""
|
|
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
|
|
|
features = {
|
|
"observation.images.cam": {
|
|
"dtype": "video",
|
|
"shape": (64, 96, 3),
|
|
"names": ["height", "width", "channels"],
|
|
},
|
|
"action": {"dtype": "float32", "shape": (2,), "names": ["j1", "j2"]},
|
|
}
|
|
|
|
dataset = LeRobotDataset.create(
|
|
repo_id="test/multi_ep",
|
|
fps=30,
|
|
features=features,
|
|
root=tmp_path / "multi_ep_test",
|
|
use_videos=True,
|
|
streaming_encoding=True,
|
|
)
|
|
|
|
for ep in range(3):
|
|
num_frames = 10 + ep * 5
|
|
for _ in range(num_frames):
|
|
frame = {
|
|
"observation.images.cam": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"action": np.random.randn(2).astype(np.float32),
|
|
"task": f"task_{ep}",
|
|
}
|
|
dataset.add_frame(frame)
|
|
dataset.save_episode()
|
|
|
|
assert dataset.meta.total_episodes == 3
|
|
assert dataset.meta.total_frames == 10 + 15 + 20
|
|
|
|
dataset.finalize()
|
|
|
|
def test_clear_episode_buffer_cancels_streaming(self, tmp_path):
|
|
"""Test that clearing episode buffer cancels streaming encoding."""
|
|
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
|
|
|
features = {
|
|
"observation.images.cam": {
|
|
"dtype": "video",
|
|
"shape": (64, 96, 3),
|
|
"names": ["height", "width", "channels"],
|
|
},
|
|
"action": {"dtype": "float32", "shape": (2,), "names": ["j1", "j2"]},
|
|
}
|
|
|
|
dataset = LeRobotDataset.create(
|
|
repo_id="test/cancel",
|
|
fps=30,
|
|
features=features,
|
|
root=tmp_path / "cancel_test",
|
|
use_videos=True,
|
|
streaming_encoding=True,
|
|
)
|
|
|
|
# Add some frames
|
|
for _ in range(5):
|
|
frame = {
|
|
"observation.images.cam": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"action": np.random.randn(2).astype(np.float32),
|
|
"task": "task",
|
|
}
|
|
dataset.add_frame(frame)
|
|
|
|
# Cancel and re-record
|
|
dataset.clear_episode_buffer()
|
|
|
|
# Record a new episode
|
|
for _ in range(10):
|
|
frame = {
|
|
"observation.images.cam": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"action": np.random.randn(2).astype(np.float32),
|
|
"task": "task",
|
|
}
|
|
dataset.add_frame(frame)
|
|
dataset.save_episode()
|
|
|
|
assert dataset.meta.total_episodes == 1
|
|
assert dataset.meta.total_frames == 10
|
|
|
|
dataset.finalize()
|
|
|
|
def test_multi_camera_add_frame_streaming(self, tmp_path):
|
|
"""Test that start_episode is called once with multiple video keys."""
|
|
from lerobot.datasets.lerobot_dataset import LeRobotDataset
|
|
|
|
features = {
|
|
"observation.images.cam1": {
|
|
"dtype": "video",
|
|
"shape": (64, 96, 3),
|
|
"names": ["height", "width", "channels"],
|
|
},
|
|
"observation.images.cam2": {
|
|
"dtype": "video",
|
|
"shape": (64, 96, 3),
|
|
"names": ["height", "width", "channels"],
|
|
},
|
|
"action": {"dtype": "float32", "shape": (2,), "names": ["j1", "j2"]},
|
|
}
|
|
|
|
dataset = LeRobotDataset.create(
|
|
repo_id="test/multi_cam",
|
|
fps=30,
|
|
features=features,
|
|
root=tmp_path / "multi_cam_test",
|
|
use_videos=True,
|
|
streaming_encoding=True,
|
|
)
|
|
|
|
num_frames = 15
|
|
for _ in range(num_frames):
|
|
frame = {
|
|
"observation.images.cam1": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"observation.images.cam2": np.random.randint(0, 255, (64, 96, 3), dtype=np.uint8),
|
|
"action": np.random.randn(2).astype(np.float32),
|
|
"task": "test task",
|
|
}
|
|
dataset.add_frame(frame)
|
|
|
|
dataset.save_episode()
|
|
|
|
assert dataset.meta.total_episodes == 1
|
|
assert dataset.meta.total_frames == num_frames
|
|
|
|
dataset.finalize()
|