id3 0.1.8

A library for reading and writing ID3 metadata.
docs.rs failed to build id3-0.1.8
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: id3-1.13.1

#rust-id3

Build Status

A library for reading and writing ID3 metadata.

Documentation

##Usage

Add the dependency to your Cargo.toml:

[dependencies]
id3 = "*"
use id3::Tag;

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

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

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

tag.save().unwrap();

##Supported ID3 Versions

  • ID3v1 reading
  • ID3v2.2 reading/writing
  • ID3v2.3 reading/writing
  • ID3v2.4 reading/writing

##Unsupported Features

  • Unsynchronization
  • Grouping identity
  • Encryption

##Contributors