#flac #metadata #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

#701 in Audio

Download history 1224/week @ 2024-09-29 2578/week @ 2024-10-06 4488/week @ 2024-10-13 3944/week @ 2024-10-20 6737/week @ 2024-10-27 7281/week @ 2024-11-03 5432/week @ 2024-11-10

24,062 downloads per month
Used in 21 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();
}

lib.rs:

A library to read and write FLAC metadata tags.

Dependencies

~225KB