Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ parse-display = "0.10"
thiserror = "2.0"
quick-xml = { version = "0.38.4", features = ["serialize", "serde-types"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
faster-hex = "0.9"
chrono = "0.4"
[build-dependencies]
glob = "0.3"
Expand Down
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,18 @@ have breaking API changes in the future.

## Command Line Usage

This library includes a command line tool named `rekordcrate` to inspect
database exports (i.e. `PIONEER/rekordbox/export.pdb` files):
The included command line tool `rekordcrate` can be used to inspect various files.

By default, it will output `Debug` trait output. pass `--format json` (or `-f json`) to any `dump-*` command to get JSON output instead.
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The sentence should start with a capital letter: "Pass" instead of "pass".

Suggested change
By default, it will output `Debug` trait output. pass `--format json` (or `-f json`) to any `dump-*` command to get JSON output instead.
By default, it will output `Debug` trait output. Pass `--format json` (or `-f json`) to any `dump-*` command to get JSON output instead.

Copilot uses AI. Check for mistakes.

To inspect database exports (i.e. `PIONEER/rekordbox/export.pdb` files):

$ cargo run -- dump-pdb data/complete_export/demo-tracks/PIONEER/rekordbox/export.pdb

Analysis files (`.DAT`, `.EXT` and `.2EX` files in the `PIONEER/USBANLZ`
directory) can also be viewed:

$ cargo run -- dump-anlz -- data/complete_export/demo_tracks/PIONEER/USBANLZ/P016/0000875E/ANLZ0000.DAT
$ cargo run -- dump-anlz data/complete_export/demo_tracks/PIONEER/USBANLZ/P016/0000875E/ANLZ0000.DAT

The tool is also able to display the contents of `*SETTING.DAT` files
(`DEVSETTING.DAT`, `DJMMYSETTING.DAT`, `MYSETTING.DAT` and `MYSETTING2.DAT`
Expand Down
Loading
Loading