rust-id3

Build Status

A library for reading and writing ID3 metadata.

Documentation

Usage

Add the dependency to your Cargo.toml:

toml [dependencies] id3 = "0.1.12"

```rust use id3::Tag;

let mut tag = Tag::readfrompath("music.mp3").unwrap();

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

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

tag.save().unwrap(); ```

Supported ID3 Versions

Unsupported Features

Contributors