rust-id3

Build Status Crate Documentation

A library for reading and writing ID3 metadata.

Usage

```rust fn main() { let tag = id3::Tag::readfrompath("testdata/id3v24.id3").unwrap();

// print the artist the hard way println!("{}", tag.get("TPE1").unwrap().content().text().unwrap());

// or print it the easy way println!("{}", tag.artist().unwrap()); } ```

Supported ID3 Versions

Unsupported Features