Very simple directory analyzer that retrieves song format info and metadata
I wanted to have something to sum up my huge dirs of music in my computer. This is the tool I think I need :)
- Correct CLI arguments
- Directory traversal
- Filtering by extensions (either through CLI arguments or maybe a config file?)
- Triple output: Plain text + JSON + TOML
- Loading from filetypes to display in plain text
- Colors
- Default extensions:
mp3,flac,wav,ogg - Pass your own list with repeated flags:
trackl ~/Music -e mp3 -e m4a -e aac - Or pass a comma-separated list:
trackl ~/Music -e mp3,m4a,aac
clap→ CLI arguments parsinganyhow→ Blanket error handlinghuman-panic→ Better panic handling onreleasemodeserde→ JSON / YAML / TOML outputswalkdir→ Directory and file traversal