16 releases

0.2.5 Oct 7, 2021
0.2.4 Aug 15, 2020
0.2.3 May 20, 2020
0.2.2 Mar 7, 2020
0.1.3 Jun 6, 2015

#240 in Audio

Download history 393/week @ 2023-11-19 304/week @ 2023-11-26 416/week @ 2023-12-03 248/week @ 2023-12-10 323/week @ 2023-12-17 250/week @ 2023-12-24 191/week @ 2023-12-31 372/week @ 2024-01-07 393/week @ 2024-01-14 275/week @ 2024-01-21 235/week @ 2024-01-28 221/week @ 2024-02-04 269/week @ 2024-02-11 331/week @ 2024-02-18 392/week @ 2024-02-25 390/week @ 2024-03-03

1,423 downloads per month
Used in 20 crates (10 directly)

MIT license

63KB
1.5K SLoC

rust-metaflac

Build Status

A library for reading and writing FLAC metadata.

Documentation

Usage

Add the dependency to your Cargo.toml:

[dependencies]
metaflac = "0.2"
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();
}

lib.rs:

A library to read and write FLAC metadata tags.

Dependencies

~230KB