#flac #audio-metadata #parser

moosicbox_metaflac

A library for reading and writing FLAC metadata, modified for MoosicBox

1 unstable release

0.1.0 Oct 3, 2024

#1850 in Audio

Download history 7206/week @ 2025-10-21 6422/week @ 2025-10-28 5273/week @ 2025-11-04 4975/week @ 2025-11-11 9238/week @ 2025-11-18 11595/week @ 2025-11-25 4939/week @ 2025-12-02 5495/week @ 2025-12-09 3820/week @ 2025-12-16 5845/week @ 2025-12-23 3587/week @ 2025-12-30 2194/week @ 2026-01-06 2283/week @ 2026-01-13 2052/week @ 2026-01-20 1901/week @ 2026-01-27 2201/week @ 2026-02-03

8,712 downloads per month
Used in 18 crates (via moosicbox_audiotags)

MIT license

65KB
1.5K SLoC

rust-metaflac

A library for reading and writing FLAC metadata, modified for MoosicBox.

Usage

Add the dependency to your Cargo.toml:

[dependencies]
moosicbox_metaflac = "0.1"
extern crate moosicbox_metaflac;

use moosicbox_metaflac::Tag;

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

	// Some things modifying the tag

	tag.save().unwrap();
}

Dependencies

~240KB