-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9e0174
commit be5c296
Showing
3 changed files
with
108 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
# mcap-extractor | ||
# mcap-extractor | ||
This is a tool to extract data from MCAP files. | ||
|
||
## Features | ||
- Extract raw H.264 data and frames from a MCAP file. | ||
- Support sliced MCAP files. | ||
|
||
## Usage | ||
Extract raw H.264 data and frames from a MCAP file. | ||
```bash | ||
mcap-extractor -i /path/to/mcap/dir -o /path/to/output --topic="your_h264_topic" | ||
``` | ||
|
||
## Build | ||
Build the binary | ||
```bash | ||
cargo build --release | ||
``` | ||
|
||
Build the deb package if you want to share it with others | ||
```bash | ||
cargo deb | ||
``` | ||
|
||
## Installation | ||
Download the latest release from the [releases page](https://github.com/yinguobing/mcap-extractor/releases). | ||
|
||
Install using `dpkg`: | ||
```bash | ||
sudo dpkg -i mcap-extractor_<version>_amd64.deb | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters