A Python library for loading and processing MCAP data files in a way that is more suitable for machine learning and robotics training pipelines.
English | 简体中文
- Dataset-style APIs for iterating MCAP data as episodes/samples
- Built-in statistics utilities (dataset-level and episode-level)
- Convenient access to topics and attachments
- Integration CLI for training with LeRobot using MCAP as the dataset backend
Install from PyPI:
pip install mcap-data-loaderOr install from source:
git clone https://github.com/OpenGHz/MCAP-DataLoader.git --depth 1
cd MCAP-DataLoader
pip install -e .A basic example showing how to load MCAP files from a directory, inspect statistics, and iterate through episodes/samples:
frommcap_data_loader.datasets.mcap_datasetimport (
McapFlatBuffersEpisodeDataset,
McapFlatBuffersEpisodeDatasetConfig,
)
frompprintimportpprintdataset=McapFlatBuffersEpisodeDataset(
McapFlatBuffersEpisodeDatasetConfig(
data_root="data/example",
# keys typically include topic names and optional special fields (e.g. "log_stamps")keys=["/follow/arm/joint_state/position", "log_stamps"],
)
)
print(f"All files: {dataset.all_files}")
print(f"Dataset length: {len(dataset)}")
print("Dataset statistics:")
pprint(dataset.statistics())
forepisodeindataset:
print(f"Current file: {episode.config.data_root}")
forsampleinepisode:
print(f"Sample keys: {sample.keys()}")
breakprint(f"Episode length: {len(episode)}")
print(f"All topics: {episode.reader.all_topic_names()}")
print(f"All attachments: {episode.reader.all_attachment_names()}")
print("Episode statistics:")
pprint(episode.statistics())
print("----"*10)More examples and detailed usage can be found in the examples directory.
MCAP Data Loader provides a CLI to train LeRobot models using MCAP data files. This allows you to use MCAP datasets directly as the training data source for LeRobot, without needing to convert them into a different format.
You should have LeRobot installed in your environment to use this feature. You can install it from PyPI (0.4.3 is tested):
pip install lerobotRun:
mcap-lerobot-train -c configs/config.yamlRecommended: place your config file under a configs/ directory in your current working directory.
The top level is the standard LeRobot configuration, with an additional mcap section for MCAP dataset loading settings:
batch_size: 2num_workers: 1policy:
type: actpush_to_hub: falsechunk_size: 2n_action_steps: 2dataset:
root: datarepo_id: examplestreaming: truemcap:
states:
- /follow/arm/joint_state/position
- /follow/eef/joint_state/positionactions:
- /lead/arm/pose/position
- /lead/arm/pose/orientationimages:
- /env_camera/color/image_rawThe lists of topics specified by states and actions will be loaded and concatenated to form the observation.state and action required by lerobot, serving as low-dimensional state and action inputs in the training data. Meanwhile, images will be appended to the observation.images field, using the first part of the name (e.g., env_camera in the example above) as a suffix for image input, such as observation.images.env_camera, for use during training.
Vision-language-action policies such as pi0.5 need two things beyond ACT, both handled by the mcap section:
- Language task. Each sample must carry a language instruction. It is extracted per-episode from an MCAP metadata record (by default
task_info.task_description). Settask_sourcetometadata(default),config(use the statictaskstring), ornone(disable, e.g. for ACT). - Quantile statistics. pi0.5 normalizes state/action with quantiles, so
q01/q99stats are required. Setcompute_quantiles: trueto compute them with one extra pass over the dataset. This is auto-enabled when the policy uses quantile normalization.
pi0.5 also requires a non-empty states. A minimal example (see configs/pi05.yaml):
policy:
type: pi05chunk_size: 50n_action_steps: 50mcap:
states:
- /follow/arm/pose/position
- /follow/arm/pose/orientationactions:
- /lead/arm/pose/position
- /lead/arm/pose/orientationimages:
- /env_camera/color/image_rawtask_source: metadata # metadata | config | nonetask_metadata_name: task_infotask_field: task_description # or task_description_zhtask: "do the task"# fallback when metadata is missingcompute_quantiles: trueThe action chunk length, image resize to 224, and state/action padding are handled inside the pi0.5 model, so no data-side change is needed for those. The first run downloads the PaliGemma tokenizer/weights from the Hugging Face hub.
For processed data, MCAP is better suited to creating a new file that contains only the processed topics, rather than appending processed data back into the original file. For an example of generating processed topics, see the airdc process_poses script.
During training, you can specify both the original dataset directory and the processed dataset directory at the same time. MCAP Data Loader will merge them automatically at runtime, so they can be consumed as if they were read from a single dataset.
A typical configuration looks like this:
dataset:
root: datarepo_id:
- mujoco
- mujoco_processedstreaming: trueNotes:
dataset.rootanddataset.repo_idare reused to specify the MCAP dataset root directory and dataset name.- Command-line overrides compatible with LeRobot are supported and take the highest priority (they override values in the config file). For example:
mcap-lerobot-train -c configs/config.yaml --dataset.repo_id=example_task
If you want to use LeRobot’s original data format (while still using this CLI), add --ori:
mcap-lerobot-train -c configs/ori.yaml --oriMake sure the dataset path in your config points to the actual LeRobot dataset location.
Show supported parameters:
mcap-lerobot-train -hIf the output is long, redirect to a file:
mcap-lerobot-train -h > lerobot_help.txtFor pose-topic post-processing (generating relative-pose and rotation_6d topics), see the airdc.scripts.process_poses script in the airdc project.
The script can generate:
- relative pose topics with
_relasuffix rotation_6dtopics converted from quaternion pose topics
Example:
python3 -m airdc.scripts.process_poses \
data/example \
--keys /follow/arm/pose/position /follow/arm/pose/orientation \
--targets rela rotation_6d- MCAP loader performance — benchmarks and tuning notes for the MCAP data loader
- LeRobot performance analysis — throughput analysis for LeRobot training with MCAP
More runnable examples live in the examples directory.
mcap_data_loader/
├── basis/ # Config-able base classes (datasets, loaders, data types)
├── callers/ # Composable transforms (map, normalize, stack, policy, ...)
├── configurers/ # Hydra / config wiring
├── data_types/ # Shared data-type definitions
├── datasets/ # MCAP dataset APIs + LeRobot training integration
├── pipelines/ # Data pipeline stages (horizon, flatten, merge, slice, ...)
├── schemas/ # FlatBuffers schemas (.fbs / .bfbs)
├── scripts/ # Data-processing / helper scripts
├── serialization/ # MCAP / ROS / FlatBuffers / video (de)serialization
└── utils/ # Shared utilities
Contributions are welcome! Please read CONTRIBUTING.md for the development setup, coding style, and pull-request process, and note our Code of Conduct.
- Questions and usage help: see SUPPORT.md
- Bug reports and feature requests: open an issue
- Security reports: see SECURITY.md
This project is licensed under the terms of the MIT License.