The id3
is a plugin for nushell that helps you read the id3 metadata of your mp3 files.
This is project is experimental and still under development.
The public API for the user (flags, command input, etc...) may change while nushell is still pre 1.0
.
This project is still lacking many features - Ability to parse Id3V1 tags - Show tag version information - Eliminate non-mp3 files from the output - Missing several Id3V2 fields such as comments, data recorded, etc... - Ability to write to the tag (mutate artist, album, comments, lyrics, etc...) - Ability to convert from older Id3V1 to Id3V2.X - A better demo gif :)
This project depends on a minimum of nushell 0.10.0
to be installed as that is when support for plugin names containing numbers started.
cargo install nu_plugin_id3
cargo install --path .
Nagivate to a directory that contains files with id3 tags.
The id3
plugin expects a file path to parse from.
This is easiest to get by using the ls
command in nushell.
ls | get name | id3
To take advantage of some fun features of nushell like viewing images in your terminal,
you'll need to have the binaryview
plugin installed with nushell.
You can install this via cargo install nu_plugin_binaryview
.