metaflac 0.1.2

A library for reading and writing FLAC metadata.
docs.rs failed to build metaflac-0.1.2
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: metaflac-0.2.5

#rust-metaflac

Build Status

A library for reading and writing FLAC metadata.

Documentation

##Usage

Add the dependency to your Cargo.toml:

[dependencies]
metaflac = "*"
extern crate metaflac;

use metaflac::Tag;

fn main() {
	let tag = Tag::read_from_path("music.flac").unwrap();

	// Some things modifying the tag

	tag.save().unwrap();
}